Home
last modified time | relevance | path

Searched refs:IsDependent (Results 1 – 11 of 11) sorted by relevance

/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/AST/
DType.h3634 bool IsDependent)
3636 /*Dependent=*/IsDependent, /*InstantiationDependent=*/IsDependent,
3640 assert((DeducedType.isNull() || !IsDependent) &&
3668 bool IsDecltypeAuto, bool IsDependent) {
3671 ID.AddBoolean(IsDependent);
DASTContext.h1146 bool IsDependent) const;
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Parse/
DParseDeclCXX.cpp1578 bool IsDependent = false; in ParseClassSpecifier() local
1592 TParams, Owned, IsDependent, in ParseClassSpecifier()
1598 if (IsDependent) { in ParseClassSpecifier()
DParseDecl.cpp3755 bool IsDependent = false; in ParseEnumSpecifier() local
3761 Owned, IsDependent, ScopedEnumKWLoc, in ParseEnumSpecifier()
3764 if (IsDependent) { in ParseEnumSpecifier()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Serialization/
DASTReader.cpp4740 bool IsDependent = Deduced.isNull() ? Record[Idx++] : false; in readTypeRecord() local
4741 return Context.getAutoType(Deduced, IsDecltypeAuto, IsDependent); in readTypeRecord()
4750 bool IsDependent = Record[Idx++]; in readTypeRecord() local
4754 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord()
4764 bool IsDependent = Record[Idx++]; in readTypeRecord() local
4767 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord()
4917 bool IsDependent = Record[Idx++]; in readTypeRecord() local
4929 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaCodeComplete.cpp3613 bool IsDependent = BaseType->isDependentType(); in CodeCompleteMemberReferenceExpr() local
3614 if (!IsDependent) { in CodeCompleteMemberReferenceExpr()
3617 IsDependent = Ctx->isDependentContext(); in CodeCompleteMemberReferenceExpr()
3622 if (IsDependent) in CodeCompleteMemberReferenceExpr()
DSemaTemplate.cpp7100 bool IsDependent = false; in ActOnExplicitInstantiation() local
7104 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnExplicitInstantiation()
7106 assert(!IsDependent && "explicit instantiation of dependent name not yet handled"); in ActOnExplicitInstantiation()
DSemaDecl.cpp10334 bool &OwnedDecl, bool &IsDependent, in ActOnTag() argument
10444 IsDependent = true; in ActOnTag()
10475 IsDependent = true; in ActOnTag()
DSemaDeclCXX.cpp11376 bool IsDependent = false; in ActOnTemplatedFriendTag() local
11380 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnTemplatedFriendTag()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/AST/
DASTContext.cpp3668 bool IsDependent) const { in getAutoType()
3669 if (DeducedType.isNull() && !IsDecltypeAuto && !IsDependent) in getAutoType()
3675 AutoType::Profile(ID, DeducedType, IsDecltypeAuto, IsDependent); in getAutoType()
3681 IsDependent); in getAutoType()
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Sema/
DSema.h1666 bool &OwnedDecl, bool &IsDependent,