Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDType.h3876 bool IsDependent)
3878 /*Dependent=*/IsDependent, /*InstantiationDependent=*/IsDependent,
3882 assert((DeducedType.isNull() || !IsDependent) &&
3910 bool IsDecltypeAuto, bool IsDependent) {
3913 ID.AddBoolean(IsDependent);
HDASTContext.h1231 bool IsDependent) const;
/NextBSD/contrib/llvm/tools/clang/lib/Parse/
HDParseDeclCXX.cpp1684 bool IsDependent = false; in ParseClassSpecifier() local
1700 TParams, Owned, IsDependent, in ParseClassSpecifier()
1708 if (IsDependent) { in ParseClassSpecifier()
HDParseDecl.cpp3981 bool IsDependent = false; in ParseEnumSpecifier() local
3987 Owned, IsDependent, ScopedEnumKWLoc, in ParseEnumSpecifier()
4006 if (IsDependent) { in ParseEnumSpecifier()
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTReader.cpp5185 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/
HDSemaCodeComplete.cpp3696 bool IsDependent = BaseType->isDependentType(); in CodeCompleteMemberReferenceExpr() local
3697 if (!IsDependent) { in CodeCompleteMemberReferenceExpr()
3700 IsDependent = Ctx->isDependentContext(); in CodeCompleteMemberReferenceExpr()
3705 if (IsDependent) in CodeCompleteMemberReferenceExpr()
HDSemaTemplate.cpp7453 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()
HDSemaDecl.cpp11503 bool &OwnedDecl, bool &IsDependent, in ActOnTag() argument
11615 IsDependent = true; in ActOnTag()
11646 IsDependent = true; in ActOnTag()
HDSemaDeclCXX.cpp12301 bool IsDependent = false; in ActOnTemplatedFriendTag() local
12305 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnTemplatedFriendTag()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDASTContext.cpp3925 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/
HDSema.h1858 bool &OwnedDecl, bool &IsDependent,