Searched refs:IsDependent (Results 1 – 11 of 11) sorted by relevance
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | Type.h | 3876 bool IsDependent) 3878 /*Dependent=*/IsDependent, /*InstantiationDependent=*/IsDependent, 3882 assert((DeducedType.isNull() || !IsDependent) && 3910 bool IsDecltypeAuto, bool IsDependent) { 3913 ID.AddBoolean(IsDependent);
|
| HD | ASTContext.h | 1231 bool IsDependent) const;
|
| /NextBSD/contrib/llvm/tools/clang/lib/Parse/ |
| HD | ParseDeclCXX.cpp | 1684 bool IsDependent = false; in ParseClassSpecifier() local 1700 TParams, Owned, IsDependent, in ParseClassSpecifier() 1708 if (IsDependent) { in ParseClassSpecifier()
|
| HD | ParseDecl.cpp | 3981 bool IsDependent = false; in ParseEnumSpecifier() local 3987 Owned, IsDependent, ScopedEnumKWLoc, in ParseEnumSpecifier() 4006 if (IsDependent) { in ParseEnumSpecifier()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Serialization/ |
| HD | ASTReader.cpp | 5185 bool IsDependent = Deduced.isNull() ? Record[Idx++] : false; in readTypeRecord() local 5186 return Context.getAutoType(Deduced, IsDecltypeAuto, IsDependent); in readTypeRecord() 5195 bool IsDependent = Record[Idx++]; in readTypeRecord() local 5199 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord() 5209 bool IsDependent = Record[Idx++]; in readTypeRecord() local 5212 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord() 5378 bool IsDependent = Record[Idx++]; in readTypeRecord() local 5390 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | SemaCodeComplete.cpp | 3696 bool IsDependent = BaseType->isDependentType(); in CodeCompleteMemberReferenceExpr() local 3697 if (!IsDependent) { in CodeCompleteMemberReferenceExpr() 3700 IsDependent = Ctx->isDependentContext(); in CodeCompleteMemberReferenceExpr() 3705 if (IsDependent) in CodeCompleteMemberReferenceExpr()
|
| HD | SemaTemplate.cpp | 7453 bool IsDependent = false; in ActOnExplicitInstantiation() local 7457 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnExplicitInstantiation() 7460 assert(!IsDependent && "explicit instantiation of dependent name not yet handled"); in ActOnExplicitInstantiation()
|
| HD | SemaDecl.cpp | 11503 bool &OwnedDecl, bool &IsDependent, in ActOnTag() argument 11615 IsDependent = true; in ActOnTag() 11646 IsDependent = true; in ActOnTag()
|
| HD | SemaDeclCXX.cpp | 12301 bool IsDependent = false; in ActOnTemplatedFriendTag() local 12305 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnTemplatedFriendTag()
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | ASTContext.cpp | 3925 bool IsDependent) const { in getAutoType() 3926 if (DeducedType.isNull() && !IsDecltypeAuto && !IsDependent) in getAutoType() 3932 AutoType::Profile(ID, DeducedType, IsDecltypeAuto, IsDependent); in getAutoType() 3938 IsDependent); in getAutoType()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Sema/ |
| HD | Sema.h | 1858 bool &OwnedDecl, bool &IsDependent,
|