Searched refs:IsDependent (Results 1 – 11 of 11) sorted by relevance
/external/clang/include/clang/AST/ |
D | Type.h | 3918 AutoType(QualType DeducedType, AutoTypeKeyword Keyword, bool IsDependent) 3920 /*Dependent=*/IsDependent, /*InstantiationDependent=*/IsDependent, 3924 assert((DeducedType.isNull() || !IsDependent) && 3956 AutoTypeKeyword Keyword, bool IsDependent) { 3959 ID.AddBoolean(IsDependent);
|
D | ASTContext.h | 1303 bool IsDependent) const;
|
/external/clang/lib/Parse/ |
D | ParseDeclCXX.cpp | 1720 bool IsDependent = false; in ParseClassSpecifier() local 1736 TParams, Owned, IsDependent, in ParseClassSpecifier() 1744 if (IsDependent) { in ParseClassSpecifier()
|
D | ParseDecl.cpp | 3992 bool IsDependent = false; in ParseEnumSpecifier() local 3998 Owned, IsDependent, ScopedEnumKWLoc, in ParseEnumSpecifier() 4017 if (IsDependent) { in ParseEnumSpecifier()
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 5419 bool IsDependent = Deduced.isNull() ? Record[Idx++] : false; in readTypeRecord() local 5420 return Context.getAutoType(Deduced, Keyword, IsDependent); in readTypeRecord() 5429 bool IsDependent = Record[Idx++]; in readTypeRecord() local 5433 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord() 5443 bool IsDependent = Record[Idx++]; in readTypeRecord() local 5446 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord() 5612 bool IsDependent = Record[Idx++]; in readTypeRecord() local 5624 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord()
|
/external/clang/lib/Sema/ |
D | SemaCodeComplete.cpp | 3697 bool IsDependent = BaseType->isDependentType(); in CodeCompleteMemberReferenceExpr() local 3698 if (!IsDependent) { in CodeCompleteMemberReferenceExpr() 3701 IsDependent = Ctx->isDependentContext(); in CodeCompleteMemberReferenceExpr() 3706 if (IsDependent) in CodeCompleteMemberReferenceExpr()
|
D | SemaTemplate.cpp | 7496 bool IsDependent = false; in ActOnExplicitInstantiation() local 7500 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnExplicitInstantiation() 7503 assert(!IsDependent && "explicit instantiation of dependent name not yet handled"); in ActOnExplicitInstantiation()
|
D | SemaDecl.cpp | 11823 bool &OwnedDecl, bool &IsDependent, in ActOnTag() argument 11940 IsDependent = true; in ActOnTag() 11971 IsDependent = true; in ActOnTag()
|
D | SemaDeclCXX.cpp | 12304 bool IsDependent = false; in ActOnTemplatedFriendTag() local 12308 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnTemplatedFriendTag()
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 3987 bool IsDependent) const { in getAutoType() 3988 if (DeducedType.isNull() && Keyword == AutoTypeKeyword::Auto && !IsDependent) in getAutoType() 3994 AutoType::Profile(ID, DeducedType, Keyword, IsDependent); in getAutoType() 4000 IsDependent); in getAutoType()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 1896 bool &OwnedDecl, bool &IsDependent,
|