Home
last modified time | relevance | path

Searched refs:UnresolvedUsingValueDecl (Results 1 – 25 of 28) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp3219 void UnresolvedUsingValueDecl::anchor() {} in anchor()
3221 UnresolvedUsingValueDecl *
3222 UnresolvedUsingValueDecl::Create(ASTContext &C, DeclContext *DC, in Create()
3227 return new (C, DC) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc, in Create()
3232 UnresolvedUsingValueDecl *
3233 UnresolvedUsingValueDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
3234 return new (C, ID) UnresolvedUsingValueDecl(nullptr, QualType(), in CreateDeserialized()
3241 SourceRange UnresolvedUsingValueDecl::getSourceRange() const { in getSourceRange()
H A DDeclPrinter.cpp112 void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
1779 void DeclPrinter::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
H A DComputeDependence.cpp769 isa<UnresolvedUsingValueDecl>(D)) in computeDependence()
H A DDecl.cpp1887 if (const auto *UUVD = dyn_cast<UnresolvedUsingValueDecl>(this)) { in declarationReplaces()
1891 cast<UnresolvedUsingValueDecl>(OldD)->getQualifier()); in declarationReplaces()
H A DExprCXX.cpp1533 if (isa<UnresolvedUsingValueDecl>(decl)) in hasOnlyNonStaticMemberFunctions()
H A DTextNodeDumper.cpp2389 const UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
H A DASTContext.cpp1486 isa<UnresolvedUsingValueDecl>(Pattern) || in setInstantiatedFromUsingDecl()
1490 isa<UnresolvedUsingValueDecl>(Inst) || in setInstantiatedFromUsingDecl()
6703 if (const auto *UX = dyn_cast<UnresolvedUsingValueDecl>(X)) { in isSameEntity()
6704 const auto *UY = cast<UnresolvedUsingValueDecl>(Y); in isSameEntity()
9168 isa<UnresolvedUsingValueDecl>(D) || in getOverloadedTemplateName()
H A DASTImporter.cpp505 ExpectedDecl VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
5256 UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
5278 UnresolvedUsingValueDecl *ToUsingValue; in VisitUnresolvedUsingValueDecl()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h3854 class UnresolvedUsingValueDecl : public ValueDecl,
3855 public Mergeable<UnresolvedUsingValueDecl> {
3869 UnresolvedUsingValueDecl(DeclContext *DC, QualType Ty, in UnresolvedUsingValueDecl() function
3917 static UnresolvedUsingValueDecl *
3922 static UnresolvedUsingValueDecl *
3928 UnresolvedUsingValueDecl *getCanonicalDecl() override { in getCanonicalDecl()
3931 const UnresolvedUsingValueDecl *getCanonicalDecl() const { in getCanonicalDecl()
H A DTextNodeDumper.h373 void VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl *D);
H A DRecursiveASTVisitor.h2060 DEF_TRAVERSE_DECL(UnresolvedUsingValueDecl, {
/freebsd-14.2/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp106 void VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl *D);
1067 void USRGenerator::VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
H A DIndexDecl.cpp642 bool VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DLookup.h779 if (isa<UnresolvedUsingValueDecl>((*I)->getUnderlyingDecl())) in checkUnresolved()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp191 bool TraverseUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) { in TraverseUnresolvedUsingValueDecl()
H A DSemaLookup.cpp479 isa<UnresolvedUsingValueDecl>(D); in canHideTag()
499 else if (isa<UnresolvedUsingValueDecl>(D)) in resolveKind()
591 if (isa<UnresolvedUsingValueDecl>(D)) { in resolveKind()
H A DSemaDeclCXX.cpp7039 if (((isa<FieldDecl>(D) || isa<UnresolvedUsingValueDecl>(D)) && in CheckCompletedCXXClass()
12511 !isa<UnresolvedUsingValueDecl>(Target) && in CheckUsingShadowDecl()
12911 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc, in BuildUsingDeclaration()
13144 assert(isa<UnresolvedUsingValueDecl>(InstantiatedFrom) || in BuildUsingPackDecl()
13210 isa<UnresolvedUsingValueDecl>(D) || isa<EnumConstantDecl>(D); in CheckUsingDeclRedeclaration()
13233 } else if (UnresolvedUsingValueDecl *UD in CheckUsingDeclRedeclaration()
13234 = dyn_cast<UnresolvedUsingValueDecl>(D)) { in CheckUsingDeclRedeclaration()
H A DSemaTemplate.cpp142 if (AllowDependent && isa<UnresolvedUsingValueDecl>(D)) in getAsTemplateNameDecl()
283 if (isa<UnresolvedUsingValueDecl>(D)) { in isTemplateName()
11305 if (UnresolvedUsingValueDecl *Using in CheckTypenameType()
11306 = dyn_cast<UnresolvedUsingValueDecl>(Result.getRepresentativeDecl())){ in CheckTypenameType()
H A DSemaTemplateInstantiateDecl.cpp3513 UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
6014 if (auto *UUD = dyn_cast<UnresolvedUsingValueDecl>(D)) in isInstantiationOf()
H A DSemaDeclAttr.cpp2620 if (isa<UsingDecl, UnresolvedUsingTypenameDecl, UnresolvedUsingValueDecl>( in handleAvailabilityAttr()
8296 UnresolvedUsingValueDecl>(D)) { in handleDeprecatedAttr()
/freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp865 const internal::VariadicDynCastAllOfMatcher<Decl, UnresolvedUsingValueDecl>
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp374 void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
1949 void ASTDeclReader::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
3882 D = UnresolvedUsingValueDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp87 void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
1435 void ASTDeclWriter::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1565 bool WalkUpFromUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *S) { in WalkUpFromUnresolvedUsingValueDecl()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1833 UnresolvedUsingValueDecl>

12