Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExprConcepts.h170 Requirement(RequirementKind Kind, bool IsDependent,
172 Kind(Kind), Dependent(IsDependent), in Kind()
190 void setDependent(bool IsDependent) { Dependent = IsDependent; } in setDependent() argument
H A DASTContext.h1598 bool IsDependent, bool IsPack = false,
1611 bool IsDependent) const;
H A DType.h5039 bool IsDependent, ConceptDecl *CD,
5074 QualType Deduced, bool IsDependent) {
5077 ID.AddBoolean(IsDependent);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaTemplate.cpp389 bool IsDependent = false; in LookupTemplateName() local
395 IsDependent = !LookupCtx && ObjectType->isDependentType(); in LookupTemplateName()
396 assert((IsDependent || !ObjectType->isIncompleteType() || in LookupTemplateName()
423 IsDependent = !LookupCtx && isDependentScopeSpecifier(SS); in LookupTemplateName()
447 IsDependent |= Found.wasNotFoundInCurrentInstantiation(); in LookupTemplateName()
471 IsDependent |= Found.wasNotFoundInCurrentInstantiation(); in LookupTemplateName()
492 if (AllFunctions || (Found.empty() && !IsDependent)) { in LookupTemplateName()
504 if (Found.empty() && !IsDependent && AllowTypoCorrection) { in LookupTemplateName()
543 if (IsDependent) { in LookupTemplateName()
9823 bool IsDependent = false; in ActOnExplicitInstantiation() local
[all …]
H A DSemaExprCXX.cpp249 bool IsDependent = false; in getDestructorName() local
255 IsDependent |= SearchType->isDependentType(); in getDestructorName()
269 IsDependent |= isDependentScopeSpecifier(LookupSS); in getDestructorName()
354 if (IsDependent) { in getDestructorName()
H A DSemaCodeComplete.cpp4797 bool IsDependent = BaseType->isDependentType(); in AddRecordMembersCompletionResults() local
4798 if (!IsDependent) { in AddRecordMembersCompletionResults()
4801 IsDependent = Ctx->isDependentContext(); in AddRecordMembersCompletionResults()
4806 if (IsDependent) in AddRecordMembersCompletionResults()
H A DSemaDecl.cpp15486 bool &OwnedDecl, bool &IsDependent, in ActOnTag() argument
15655 IsDependent = true; in ActOnTag()
15686 IsDependent = true; in ActOnTag()
H A DSemaDeclCXX.cpp16309 bool IsDependent = false; in ActOnTemplatedFriendTag() local
16313 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnTemplatedFriendTag()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp5517 bool IsDependent, bool IsPack, in getAutoType() argument
5520 assert((!IsPack || IsDependent) && "only use IsPack for a dependent pack"); in getAutoType()
5522 !TypeConstraintConcept && !IsDependent) in getAutoType()
5528 AutoType::Profile(ID, *this, DeducedType, Keyword, IsDependent, in getAutoType()
5538 (IsDependent ? TypeDependence::DependentInstantiation in getAutoType()
5552 TemplateName Template, QualType DeducedType, bool IsDependent) const { in getDeducedTemplateSpecializationType()
5557 IsDependent); in getDeducedTemplateSpecializationType()
5563 DeducedTemplateSpecializationType(Template, DeducedType, IsDependent); in getDeducedTemplateSpecializationType()
H A DType.cpp4410 bool IsDependent, ConceptDecl *CD, in Profile() argument
4414 ID.AddBoolean(IsDependent); in Profile()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseDeclCXX.cpp1950 bool IsDependent = false; in ParseClassSpecifier() local
1965 DS.getModulePrivateSpecLoc(), TParams, Owned, IsDependent, in ParseClassSpecifier()
1974 if (IsDependent) { in ParseClassSpecifier()
H A DParseDecl.cpp4699 bool IsDependent = false; in ParseEnumSpecifier() local
4704 attrs, AS, DS.getModulePrivateSpecLoc(), TParams, Owned, IsDependent, in ParseEnumSpecifier()
4726 if (IsDependent) { in ParseEnumSpecifier()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h3001 bool &IsDependent, SourceLocation ScopedEnumKWLoc,