| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclCXX.cpp | 3219 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 D | DeclPrinter.cpp | 112 void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D); 1779 void DeclPrinter::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
|
| H A D | ComputeDependence.cpp | 769 isa<UnresolvedUsingValueDecl>(D)) in computeDependence()
|
| H A D | Decl.cpp | 1887 if (const auto *UUVD = dyn_cast<UnresolvedUsingValueDecl>(this)) { in declarationReplaces() 1891 cast<UnresolvedUsingValueDecl>(OldD)->getQualifier()); in declarationReplaces()
|
| H A D | ExprCXX.cpp | 1533 if (isa<UnresolvedUsingValueDecl>(decl)) in hasOnlyNonStaticMemberFunctions()
|
| H A D | TextNodeDumper.cpp | 2389 const UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
|
| H A D | ASTContext.cpp | 1486 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 D | ASTImporter.cpp | 505 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 D | DeclCXX.h | 3854 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 D | TextNodeDumper.h | 373 void VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl *D);
|
| H A D | RecursiveASTVisitor.h | 2060 DEF_TRAVERSE_DECL(UnresolvedUsingValueDecl, {
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Index/ |
| H A D | USRGeneration.cpp | 106 void VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl *D); 1067 void USRGenerator::VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
|
| H A D | IndexDecl.cpp | 642 bool VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Lookup.h | 779 if (isa<UnresolvedUsingValueDecl>((*I)->getUnderlyingDecl())) in checkUnresolved()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaTemplateVariadic.cpp | 191 bool TraverseUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) { in TraverseUnresolvedUsingValueDecl()
|
| H A D | SemaLookup.cpp | 479 isa<UnresolvedUsingValueDecl>(D); in canHideTag() 499 else if (isa<UnresolvedUsingValueDecl>(D)) in resolveKind() 591 if (isa<UnresolvedUsingValueDecl>(D)) { in resolveKind()
|
| H A D | SemaDeclCXX.cpp | 7039 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 D | SemaTemplate.cpp | 142 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 D | SemaTemplateInstantiateDecl.cpp | 3513 UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl() 6014 if (auto *UUD = dyn_cast<UnresolvedUsingValueDecl>(D)) in isInstantiationOf()
|
| H A D | SemaDeclAttr.cpp | 2620 if (isa<UsingDecl, UnresolvedUsingTypenameDecl, UnresolvedUsingValueDecl>( in handleAvailabilityAttr() 8296 UnresolvedUsingValueDecl>(D)) { in handleDeprecatedAttr()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 865 const internal::VariadicDynCastAllOfMatcher<Decl, UnresolvedUsingValueDecl>
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 374 void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D); 1949 void ASTDeclReader::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl() 3882 D = UnresolvedUsingValueDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| H A D | ASTWriterDecl.cpp | 87 void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D); 1435 void ASTDeclWriter::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) { in VisitUnresolvedUsingValueDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| H A D | BuildTree.cpp | 1565 bool WalkUpFromUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *S) { in WalkUpFromUnresolvedUsingValueDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 1833 UnresolvedUsingValueDecl>
|