Searched refs:IsDependent (Results 1 – 11 of 11) sorted by relevance
/external/clang/include/clang/AST/ |
D | Type.h | 4088 AutoType(QualType DeducedType, AutoTypeKeyword Keyword, bool IsDependent) 4090 /*Dependent=*/IsDependent, /*InstantiationDependent=*/IsDependent, 4094 assert((DeducedType.isNull() || !IsDependent) && 4126 AutoTypeKeyword Keyword, bool IsDependent) { 4129 ID.AddBoolean(IsDependent);
|
D | ASTContext.h | 1313 bool IsDependent) const;
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 5452 bool IsDependent = Deduced.isNull() ? Record[Idx++] : false; in readTypeRecord() local 5453 return Context.getAutoType(Deduced, Keyword, IsDependent); in readTypeRecord() 5462 bool IsDependent = Record[Idx++]; in readTypeRecord() local 5466 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord() 5476 bool IsDependent = Record[Idx++]; in readTypeRecord() local 5479 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord() 5645 bool IsDependent = Record[Idx++]; in readTypeRecord() local 5655 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord()
|
/external/clang/lib/Parse/ |
D | ParseDeclCXX.cpp | 1735 bool IsDependent = false; in ParseClassSpecifier() local 1751 TParams, Owned, IsDependent, in ParseClassSpecifier() 1759 if (IsDependent) { in ParseClassSpecifier()
|
D | ParseDecl.cpp | 4081 bool IsDependent = false; in ParseEnumSpecifier() local 4087 Owned, IsDependent, ScopedEnumKWLoc, in ParseEnumSpecifier() 4106 if (IsDependent) { in ParseEnumSpecifier()
|
/external/clang/lib/Sema/ |
D | SemaCodeComplete.cpp | 3710 bool IsDependent = BaseType->isDependentType(); in CodeCompleteMemberReferenceExpr() local 3711 if (!IsDependent) { in CodeCompleteMemberReferenceExpr() 3714 IsDependent = Ctx->isDependentContext(); in CodeCompleteMemberReferenceExpr() 3719 if (IsDependent) in CodeCompleteMemberReferenceExpr()
|
D | SemaTemplate.cpp | 7612 bool IsDependent = false; in ActOnExplicitInstantiation() local 7616 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnExplicitInstantiation() 7619 assert(!IsDependent && "explicit instantiation of dependent name not yet handled"); in ActOnExplicitInstantiation()
|
D | SemaDecl.cpp | 12263 bool &OwnedDecl, bool &IsDependent, in ActOnTag() argument 12380 IsDependent = true; in ActOnTag() 12411 IsDependent = true; in ActOnTag()
|
D | SemaDeclCXX.cpp | 12545 bool IsDependent = false; in ActOnTemplatedFriendTag() local 12549 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnTemplatedFriendTag()
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 4041 bool IsDependent) const { in getAutoType() 4042 if (DeducedType.isNull() && Keyword == AutoTypeKeyword::Auto && !IsDependent) in getAutoType() 4048 AutoType::Profile(ID, DeducedType, Keyword, IsDependent); in getAutoType() 4054 IsDependent); in getAutoType()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 1956 bool &OwnedDecl, bool &IsDependent,
|