Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/AST/
H A DExprConcepts.h172 Requirement(RequirementKind Kind, bool IsDependent,
174 Kind(Kind), Dependent(IsDependent), in Kind()
192 void setDependent(bool IsDependent) { Dependent = IsDependent; } in setDependent() argument
H A DASTContext.h1571 bool IsDependent, bool IsPack = false,
1728 bool IsDependent, bool IsPack = false,
1741 bool IsDependent) const;
H A DType.h5168 bool IsDependent, ConceptDecl *CD,
5205 QualType Deduced, bool IsDependent) {
5210 ID.AddBoolean(IsDependent || Template.isDependent());
/llvm-project-15.0.7/clang-tools-extra/test/modularize/
H A DNoProblemsDependencies.modularize3 Inputs/IsDependent.h: Inputs/SomeTypes.h Inputs/SomeOtherTypes.h
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaTemplate.cpp394 bool IsDependent = false; in LookupTemplateName() local
400 IsDependent = !LookupCtx && ObjectType->isDependentType(); in LookupTemplateName()
401 assert((IsDependent || !ObjectType->isIncompleteType() || in LookupTemplateName()
428 IsDependent = !LookupCtx && isDependentScopeSpecifier(SS); in LookupTemplateName()
452 IsDependent |= Found.wasNotFoundInCurrentInstantiation(); in LookupTemplateName()
476 IsDependent |= Found.wasNotFoundInCurrentInstantiation(); in LookupTemplateName()
496 if (AllFunctions || (Found.empty() && !IsDependent)) { in LookupTemplateName()
508 if (Found.empty() && !IsDependent && AllowTypoCorrection) { in LookupTemplateName()
547 if (IsDependent) { in LookupTemplateName()
9925 bool IsDependent = false; in ActOnExplicitInstantiation() local
[all …]
H A DSemaExprCXX.cpp252 bool IsDependent = false; in getDestructorName() local
258 IsDependent |= SearchType->isDependentType(); in getDestructorName()
272 IsDependent |= isDependentScopeSpecifier(LookupSS); in getDestructorName()
357 if (IsDependent) { in getDestructorName()
H A DSemaCodeComplete.cpp5071 bool IsDependent = BaseType->isDependentType(); in AddRecordMembersCompletionResults() local
5072 if (!IsDependent) { in AddRecordMembersCompletionResults()
5075 IsDependent = Ctx->isDependentContext(); in AddRecordMembersCompletionResults()
5080 if (IsDependent) in AddRecordMembersCompletionResults()
H A DSemaDecl.cpp16158 bool &OwnedDecl, bool &IsDependent, in ActOnTag() argument
16330 IsDependent = true; in ActOnTag()
16361 IsDependent = true; in ActOnTag()
H A DSemaDeclCXX.cpp16770 bool IsDependent = false; in ActOnTemplatedFriendTag() local
16774 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnTemplatedFriendTag()
/llvm-project-15.0.7/clang/lib/AST/
H A DASTContext.cpp5703 QualType DeducedType, AutoTypeKeyword Keyword, bool IsDependent, in getAutoTypeInternal() argument
5707 !TypeConstraintConcept && !IsDependent) in getAutoTypeInternal()
5716 AutoType::Profile(ID, *this, DeducedType, Keyword, IsDependent, in getAutoTypeInternal()
5728 Canon = getAutoTypeInternal(QualType(), Keyword, IsDependent, IsPack, in getAutoTypeInternal()
5743 (IsDependent ? TypeDependence::DependentInstantiation in getAutoTypeInternal()
5757 bool IsDependent, bool IsPack, in getAutoType() argument
5761 assert((!IsDependent || DeducedType.isNull()) && in getAutoType()
5763 return getAutoTypeInternal(DeducedType, Keyword, IsDependent, IsPack, in getAutoType()
5771 TemplateName Template, QualType DeducedType, bool IsDependent) const { in getDeducedTemplateSpecializationType()
5776 IsDependent); in getDeducedTemplateSpecializationType()
[all …]
H A DType.cpp4480 bool IsDependent, ConceptDecl *CD, in Profile() argument
4484 ID.AddBoolean(IsDependent); in Profile()
/llvm-project-15.0.7/clang/lib/Parse/
H A DParseDeclCXX.cpp1968 bool IsDependent = false; in ParseClassSpecifier() local
1983 DS.getModulePrivateSpecLoc(), TParams, Owned, IsDependent, in ParseClassSpecifier()
1992 if (IsDependent) { in ParseClassSpecifier()
H A DParseDecl.cpp4869 bool IsDependent = false; in ParseEnumSpecifier() local
4874 attrs, AS, DS.getModulePrivateSpecLoc(), TParams, Owned, IsDependent, in ParseEnumSpecifier()
4896 if (IsDependent) { in ParseEnumSpecifier()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h3243 bool &IsDependent, SourceLocation ScopedEnumKWLoc,