Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h3964 class UnresolvedUsingTypenameDecl
3966 public Mergeable<UnresolvedUsingTypenameDecl> {
3978 UnresolvedUsingTypenameDecl(DeclContext *DC, SourceLocation UsingLoc, in UnresolvedUsingTypenameDecl() function
4021 static UnresolvedUsingTypenameDecl *
4027 static UnresolvedUsingTypenameDecl *CreateDeserialized(ASTContext &C,
4031 UnresolvedUsingTypenameDecl *getCanonicalDecl() override { in getCanonicalDecl()
4034 const UnresolvedUsingTypenameDecl *getCanonicalDecl() const { in getCanonicalDecl()
H A DTextNodeDumper.h386 void VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D);
H A DType.h136 class UnresolvedUsingTypenameDecl;
5541 UnresolvedUsingTypenameDecl *Decl;
5543 UnresolvedUsingType(const UnresolvedUsingTypenameDecl *D)
5546 Decl(const_cast<UnresolvedUsingTypenameDecl *>(D)) {}
5549 UnresolvedUsingTypenameDecl *getDecl() const { return Decl; }
5563 UnresolvedUsingTypenameDecl *D) {
H A DTypeLoc.h47 class UnresolvedUsingTypenameDecl; variable
718 UnresolvedUsingTypenameDecl *getDecl() const { in getDecl()
H A DTypeProperties.td398 return ctx.getUnresolvedUsingType(cast<UnresolvedUsingTypenameDecl>(declaration));
H A DASTContext.h1661 getUnresolvedUsingType(const UnresolvedUsingTypenameDecl *Decl) const;
H A DRecursiveASTVisitor.h1996 DEF_TRAVERSE_DECL(UnresolvedUsingTypenameDecl, {
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp3279 void UnresolvedUsingTypenameDecl::anchor() {} in anchor()
3281 UnresolvedUsingTypenameDecl *
3282 UnresolvedUsingTypenameDecl::Create(ASTContext &C, DeclContext *DC, in Create()
3289 return new (C, DC) UnresolvedUsingTypenameDecl( in Create()
3294 UnresolvedUsingTypenameDecl *
3295 UnresolvedUsingTypenameDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
3297 return new (C, ID) UnresolvedUsingTypenameDecl( in CreateDeserialized()
H A DDeclPrinter.cpp100 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
1735 DeclPrinter::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
H A DASTContext.cpp1526 isa<UnresolvedUsingTypenameDecl>(Pattern)) && in setInstantiatedFromUsingDecl()
1530 isa<UnresolvedUsingTypenameDecl>(Inst)) && in setInstantiatedFromUsingDecl()
5048 } else if (const auto *Using = dyn_cast<UnresolvedUsingTypenameDecl>(Decl)) { in getTypeDeclTypeSlow()
5146 const UnresolvedUsingTypenameDecl *Decl) const { in getUnresolvedUsingType()
5150 if (const UnresolvedUsingTypenameDecl *CanonicalDecl = in getUnresolvedUsingType()
7157 if (const auto *UX = dyn_cast<UnresolvedUsingTypenameDecl>(X)) { in isSameEntity()
7160 cast<UnresolvedUsingTypenameDecl>(Y)->getQualifier()); in isSameEntity()
H A DTextNodeDumper.cpp2632 const UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
H A DASTImporter.cpp507 ExpectedDecl VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
5376 UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
5394 UnresolvedUsingTypenameDecl *ToUsing; in VisitUnresolvedUsingTypenameDecl()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp107 void VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D);
1092 void USRGenerator::VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
H A DIndexDecl.cpp651 bool VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp211 bool TraverseUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) { in TraverseUnresolvedUsingTypenameDecl()
H A DSemaTemplateInstantiateDecl.cpp3521 UnresolvedUsingTypenameDecl *TD = dyn_cast<UnresolvedUsingTypenameDecl>(D); in instantiateUnresolvedUsingDecl()
3558 UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
5995 if (auto *UUD = dyn_cast<UnresolvedUsingTypenameDecl>(D)) in isInstantiationOf()
H A DSemaDeclCXX.cpp12781 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext, in BuildUsingDeclaration()
13024 isa<UnresolvedUsingTypenameDecl>(InstantiatedFrom) || in BuildUsingPackDecl()
13112 } else if (UnresolvedUsingTypenameDecl *UD in CheckUsingDeclRedeclaration()
13113 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) { in CheckUsingDeclRedeclaration()
H A DSemaDeclAttr.cpp2245 if (isa<UsingDecl, UnresolvedUsingTypenameDecl, UnresolvedUsingValueDecl>( in handleAvailabilityAttr()
5734 } else if (isa<UsingDecl, UnresolvedUsingTypenameDecl, in handleDeprecatedAttr()
H A DTreeTransform.h16219 assert(isa<UnresolvedUsingTypenameDecl>(D) && in RebuildUnresolvedUsingType()
16222 cast<UnresolvedUsingTypenameDecl>(D)); in RebuildUnresolvedUsingType()
H A DSemaCodeComplete.cpp8131 } else if (ND && isa<UnresolvedUsingTypenameDecl>(ND)) { in CodeCompleteObjCSuperMessage()
H A DSemaDecl.cpp1774 isa<UnresolvedUsingTypenameDecl>(D) || in isUsingDeclNotAtClassScope()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp339 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
1946 UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
3910 D = UnresolvedUsingTypenameDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp74 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
1483 UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1572 bool WalkUpFromUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *S) { in WalkUpFromUnresolvedUsingTypenameDecl()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1853 UnresolvedUsingTypenameDecl>