Searched refs:IsDependent (Results 1 – 11 of 11) sorted by relevance
| /freebsd-9-stable/contrib/llvm/tools/clang/include/clang/AST/ |
| D | Type.h | 3634 bool IsDependent) 3636 /*Dependent=*/IsDependent, /*InstantiationDependent=*/IsDependent, 3640 assert((DeducedType.isNull() || !IsDependent) && 3668 bool IsDecltypeAuto, bool IsDependent) { 3671 ID.AddBoolean(IsDependent);
|
| D | ASTContext.h | 1146 bool IsDependent) const;
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Parse/ |
| D | ParseDeclCXX.cpp | 1578 bool IsDependent = false; in ParseClassSpecifier() local 1592 TParams, Owned, IsDependent, in ParseClassSpecifier() 1598 if (IsDependent) { in ParseClassSpecifier()
|
| D | ParseDecl.cpp | 3755 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/ |
| D | ASTReader.cpp | 4740 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/ |
| D | SemaCodeComplete.cpp | 3613 bool IsDependent = BaseType->isDependentType(); in CodeCompleteMemberReferenceExpr() local 3614 if (!IsDependent) { in CodeCompleteMemberReferenceExpr() 3617 IsDependent = Ctx->isDependentContext(); in CodeCompleteMemberReferenceExpr() 3622 if (IsDependent) in CodeCompleteMemberReferenceExpr()
|
| D | SemaTemplate.cpp | 7100 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()
|
| D | SemaDecl.cpp | 10334 bool &OwnedDecl, bool &IsDependent, in ActOnTag() argument 10444 IsDependent = true; in ActOnTag() 10475 IsDependent = true; in ActOnTag()
|
| D | SemaDeclCXX.cpp | 11376 bool IsDependent = false; in ActOnTemplatedFriendTag() local 11380 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnTemplatedFriendTag()
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/AST/ |
| D | ASTContext.cpp | 3668 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/ |
| D | Sema.h | 1666 bool &OwnedDecl, bool &IsDependent,
|