Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDDeclCXX.h3100 class UnresolvedUsingTypenameDecl
3102 public Mergeable<UnresolvedUsingTypenameDecl> {
3111 UnresolvedUsingTypenameDecl(DeclContext *DC, SourceLocation UsingLoc, in UnresolvedUsingTypenameDecl() function
3138 static UnresolvedUsingTypenameDecl *
3143 static UnresolvedUsingTypenameDecl *
3147 UnresolvedUsingTypenameDecl *getCanonicalDecl() override { in getCanonicalDecl()
3150 const UnresolvedUsingTypenameDecl *getCanonicalDecl() const { in getCanonicalDecl()
HDType.h88 class UnresolvedUsingTypenameDecl;
3306 UnresolvedUsingTypenameDecl *Decl;
3308 UnresolvedUsingType(const UnresolvedUsingTypenameDecl *D)
3311 Decl(const_cast<UnresolvedUsingTypenameDecl*>(D)) {}
3315 UnresolvedUsingTypenameDecl *getDecl() const { return Decl; }
3328 UnresolvedUsingTypenameDecl *D) {
HDTypeLoc.h639 UnresolvedUsingTypenameDecl *getDecl() const { in getDecl()
HDDataRecursiveASTVisitor.h1590 DEF_TRAVERSE_DECL(UnresolvedUsingTypenameDecl, {
HDRecursiveASTVisitor.h1626 DEF_TRAVERSE_DECL(UnresolvedUsingTypenameDecl, {
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDDeclCXX.cpp2163 void UnresolvedUsingTypenameDecl::anchor() { } in anchor()
2165 UnresolvedUsingTypenameDecl *
2166 UnresolvedUsingTypenameDecl::Create(ASTContext &C, DeclContext *DC, in Create()
2172 return new (C, DC) UnresolvedUsingTypenameDecl( in Create()
2177 UnresolvedUsingTypenameDecl *
2178 UnresolvedUsingTypenameDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
2179 return new (C, ID) UnresolvedUsingTypenameDecl( in CreateDeserialized()
HDDeclPrinter.cpp90 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
1292 DeclPrinter::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
HDASTDumper.cpp459 void VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D);
1386 const UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
HDASTContext.cpp1180 isa<UnresolvedUsingTypenameDecl>(Pattern)) && in setInstantiatedFromUsingDecl()
3094 } else if (const UnresolvedUsingTypenameDecl *Using = in getTypeDeclTypeSlow()
3095 dyn_cast<UnresolvedUsingTypenameDecl>(Decl)) { in getTypeDeclTypeSlow()
/NextBSD/contrib/llvm/tools/clang/lib/Index/
HDUSRGeneration.cpp105 void VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTReaderDecl.cpp275 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
1406 UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
2653 if (auto *UX = dyn_cast<UnresolvedUsingTypenameDecl>(X)) in isSameEntity()
2656 cast<UnresolvedUsingTypenameDecl>(Y)->getQualifier()); in isSameEntity()
3157 D = UnresolvedUsingTypenameDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
HDASTWriterDecl.cpp62 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
1074 UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
HDASTReader.cpp5142 ReadDeclAs<UnresolvedUsingTypenameDecl>(*Loc.F, Record, Idx)); in readTypeRecord()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaTemplateInstantiateDecl.cpp2355 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
4266 static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern, in isInstantiationOf()
4291 if (UnresolvedUsingTypenameDecl *UUD in isInstantiationOf()
4292 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) { in isInstantiationOf()
HDSemaDeclCXX.cpp8100 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext, in BuildUsingDeclaration()
8308 } else if (UnresolvedUsingTypenameDecl *UD in CheckUsingDeclRedeclaration()
8309 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) { in CheckUsingDeclRedeclaration()
HDTreeTransform.h10819 assert(isa<UnresolvedUsingTypenameDecl>(D) && in RebuildUnresolvedUsingType()
10821 Ty = cast<UnresolvedUsingTypenameDecl>(D); in RebuildUnresolvedUsingType()
HDSemaCodeComplete.cpp5504 } else if (ND && isa<UnresolvedUsingTypenameDecl>(ND)) { in CodeCompleteObjCSuperMessage()
HDSemaDecl.cpp1310 isa<UnresolvedUsingTypenameDecl>(D) || in isUsingDecl()