| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclCXX.h | 3950 class UnresolvedUsingTypenameDecl 3952 public Mergeable<UnresolvedUsingTypenameDecl> { 3964 UnresolvedUsingTypenameDecl(DeclContext *DC, SourceLocation UsingLoc, in UnresolvedUsingTypenameDecl() function 4007 static UnresolvedUsingTypenameDecl * 4013 static UnresolvedUsingTypenameDecl * 4017 UnresolvedUsingTypenameDecl *getCanonicalDecl() override { in getCanonicalDecl() 4020 const UnresolvedUsingTypenameDecl *getCanonicalDecl() const { in getCanonicalDecl()
|
| H A D | TextNodeDumper.h | 372 void VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D);
|
| H A D | Type.h | 132 class UnresolvedUsingTypenameDecl; 4686 UnresolvedUsingTypenameDecl *Decl; 4688 UnresolvedUsingType(const UnresolvedUsingTypenameDecl *D) 4691 Decl(const_cast<UnresolvedUsingTypenameDecl *>(D)) {} 4694 UnresolvedUsingTypenameDecl *getDecl() const { return Decl; } 4708 UnresolvedUsingTypenameDecl *D) {
|
| H A D | TypeLoc.h | 47 class UnresolvedUsingTypenameDecl; variable 712 UnresolvedUsingTypenameDecl *getDecl() const { in getDecl()
|
| H A D | TypeProperties.td | 365 return ctx.getUnresolvedUsingType(cast<UnresolvedUsingTypenameDecl>(declaration));
|
| H A D | ASTContext.h | 1599 getUnresolvedUsingType(const UnresolvedUsingTypenameDecl *Decl) const;
|
| H A D | RecursiveASTVisitor.h | 1941 DEF_TRAVERSE_DECL(UnresolvedUsingTypenameDecl, {
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclCXX.cpp | 3247 void UnresolvedUsingTypenameDecl::anchor() {} in anchor() 3249 UnresolvedUsingTypenameDecl * 3250 UnresolvedUsingTypenameDecl::Create(ASTContext &C, DeclContext *DC, in Create() 3257 return new (C, DC) UnresolvedUsingTypenameDecl( in Create() 3262 UnresolvedUsingTypenameDecl * 3263 UnresolvedUsingTypenameDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized() 3264 return new (C, ID) UnresolvedUsingTypenameDecl( in CreateDeserialized()
|
| H A D | DeclPrinter.cpp | 111 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D); 1773 DeclPrinter::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
|
| H A D | ASTContext.cpp | 1487 isa<UnresolvedUsingTypenameDecl>(Pattern)) && in setInstantiatedFromUsingDecl() 1491 isa<UnresolvedUsingTypenameDecl>(Inst)) && in setInstantiatedFromUsingDecl() 4633 } else if (const auto *Using = dyn_cast<UnresolvedUsingTypenameDecl>(Decl)) { in getTypeDeclTypeSlow() 4731 const UnresolvedUsingTypenameDecl *Decl) const { in getUnresolvedUsingType() 4735 if (const UnresolvedUsingTypenameDecl *CanonicalDecl = in getUnresolvedUsingType() 6708 if (const auto *UX = dyn_cast<UnresolvedUsingTypenameDecl>(X)) { in isSameEntity() 6711 cast<UnresolvedUsingTypenameDecl>(Y)->getQualifier()); in isSameEntity()
|
| H A D | TextNodeDumper.cpp | 2381 const UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
|
| H A D | ASTImporter.cpp | 506 ExpectedDecl VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D); 5292 UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl() 5310 UnresolvedUsingTypenameDecl *ToUsing; in VisitUnresolvedUsingTypenameDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Index/ |
| H A D | USRGeneration.cpp | 107 void VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D); 1076 void USRGenerator::VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
|
| H A D | IndexDecl.cpp | 651 bool VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaTemplateVariadic.cpp | 199 bool TraverseUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) { in TraverseUnresolvedUsingTypenameDecl()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 3471 UnresolvedUsingTypenameDecl *TD = dyn_cast<UnresolvedUsingTypenameDecl>(D); in instantiateUnresolvedUsingDecl() 3508 UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl() 6011 if (auto *UUD = dyn_cast<UnresolvedUsingTypenameDecl>(D)) in isInstantiationOf()
|
| H A D | SemaDeclCXX.cpp | 12905 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext, in BuildUsingDeclaration() 13145 isa<UnresolvedUsingTypenameDecl>(InstantiatedFrom) || in BuildUsingPackDecl() 13237 } else if (UnresolvedUsingTypenameDecl *UD in CheckUsingDeclRedeclaration() 13238 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) { in CheckUsingDeclRedeclaration()
|
| H A D | SemaDeclAttr.cpp | 2620 if (isa<UsingDecl, UnresolvedUsingTypenameDecl, UnresolvedUsingValueDecl>( in handleAvailabilityAttr() 8295 } else if (isa<UsingDecl, UnresolvedUsingTypenameDecl, in handleDeprecatedAttr()
|
| H A D | TreeTransform.h | 15186 assert(isa<UnresolvedUsingTypenameDecl>(D) && in RebuildUnresolvedUsingType() 15189 cast<UnresolvedUsingTypenameDecl>(D)); in RebuildUnresolvedUsingType()
|
| H A D | SemaCodeComplete.cpp | 8055 } else if (ND && isa<UnresolvedUsingTypenameDecl>(ND)) { in CodeCompleteObjCSuperMessage()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 867 const internal::VariadicDynCastAllOfMatcher<Decl, UnresolvedUsingTypenameDecl>
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 344 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D); 1959 UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl() 3885 D = UnresolvedUsingTypenameDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| H A D | ASTWriterDecl.cpp | 71 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D); 1445 UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| H A D | BuildTree.cpp | 1571 bool WalkUpFromUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *S) { in WalkUpFromUnresolvedUsingTypenameDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 1852 UnresolvedUsingTypenameDecl>
|