Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DType.h4088 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);
DASTContext.h1313 bool IsDependent) const;
/external/clang/lib/Serialization/
DASTReader.cpp5452 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/
DParseDeclCXX.cpp1735 bool IsDependent = false; in ParseClassSpecifier() local
1751 TParams, Owned, IsDependent, in ParseClassSpecifier()
1759 if (IsDependent) { in ParseClassSpecifier()
DParseDecl.cpp4081 bool IsDependent = false; in ParseEnumSpecifier() local
4087 Owned, IsDependent, ScopedEnumKWLoc, in ParseEnumSpecifier()
4106 if (IsDependent) { in ParseEnumSpecifier()
/external/clang/lib/Sema/
DSemaCodeComplete.cpp3710 bool IsDependent = BaseType->isDependentType(); in CodeCompleteMemberReferenceExpr() local
3711 if (!IsDependent) { in CodeCompleteMemberReferenceExpr()
3714 IsDependent = Ctx->isDependentContext(); in CodeCompleteMemberReferenceExpr()
3719 if (IsDependent) in CodeCompleteMemberReferenceExpr()
DSemaTemplate.cpp7612 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()
DSemaDecl.cpp12263 bool &OwnedDecl, bool &IsDependent, in ActOnTag() argument
12380 IsDependent = true; in ActOnTag()
12411 IsDependent = true; in ActOnTag()
DSemaDeclCXX.cpp12545 bool IsDependent = false; in ActOnTemplatedFriendTag() local
12549 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnTemplatedFriendTag()
/external/clang/lib/AST/
DASTContext.cpp4041 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/
DSema.h1956 bool &OwnedDecl, bool &IsDependent,