Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DType.h3918 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);
DASTContext.h1303 bool IsDependent) const;
/external/clang/lib/Parse/
DParseDeclCXX.cpp1720 bool IsDependent = false; in ParseClassSpecifier() local
1736 TParams, Owned, IsDependent, in ParseClassSpecifier()
1744 if (IsDependent) { in ParseClassSpecifier()
DParseDecl.cpp3992 bool IsDependent = false; in ParseEnumSpecifier() local
3998 Owned, IsDependent, ScopedEnumKWLoc, in ParseEnumSpecifier()
4017 if (IsDependent) { in ParseEnumSpecifier()
/external/clang/lib/Serialization/
DASTReader.cpp5419 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/
DSemaCodeComplete.cpp3697 bool IsDependent = BaseType->isDependentType(); in CodeCompleteMemberReferenceExpr() local
3698 if (!IsDependent) { in CodeCompleteMemberReferenceExpr()
3701 IsDependent = Ctx->isDependentContext(); in CodeCompleteMemberReferenceExpr()
3706 if (IsDependent) in CodeCompleteMemberReferenceExpr()
DSemaTemplate.cpp7496 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()
DSemaDecl.cpp11823 bool &OwnedDecl, bool &IsDependent, in ActOnTag() argument
11940 IsDependent = true; in ActOnTag()
11971 IsDependent = true; in ActOnTag()
DSemaDeclCXX.cpp12304 bool IsDependent = false; in ActOnTemplatedFriendTag() local
12308 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnTemplatedFriendTag()
/external/clang/lib/AST/
DASTContext.cpp3987 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/
DSema.h1896 bool &OwnedDecl, bool &IsDependent,