Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDeclCXX.h3268 class UnresolvedUsingTypenameDecl
3270 public Mergeable<UnresolvedUsingTypenameDecl> {
3279 UnresolvedUsingTypenameDecl(DeclContext *DC, SourceLocation UsingLoc, in UnresolvedUsingTypenameDecl() function
3306 static UnresolvedUsingTypenameDecl *
3311 static UnresolvedUsingTypenameDecl *
3315 UnresolvedUsingTypenameDecl *getCanonicalDecl() override { in getCanonicalDecl()
3318 const UnresolvedUsingTypenameDecl *getCanonicalDecl() const { in getCanonicalDecl()
DType.h91 class UnresolvedUsingTypenameDecl;
3477 UnresolvedUsingTypenameDecl *Decl;
3479 UnresolvedUsingType(const UnresolvedUsingTypenameDecl *D)
3482 Decl(const_cast<UnresolvedUsingTypenameDecl*>(D)) {}
3486 UnresolvedUsingTypenameDecl *getDecl() const { return Decl; }
3499 UnresolvedUsingTypenameDecl *D) {
DTypeLoc.h647 UnresolvedUsingTypenameDecl *getDecl() const { in getDecl()
DRecursiveASTVisitor.h1680 DEF_TRAVERSE_DECL(UnresolvedUsingTypenameDecl, {
/external/clang/lib/AST/
DDeclCXX.cpp2270 void UnresolvedUsingTypenameDecl::anchor() { } in anchor()
2272 UnresolvedUsingTypenameDecl *
2273 UnresolvedUsingTypenameDecl::Create(ASTContext &C, DeclContext *DC, in Create()
2279 return new (C, DC) UnresolvedUsingTypenameDecl( in Create()
2284 UnresolvedUsingTypenameDecl *
2285 UnresolvedUsingTypenameDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
2286 return new (C, ID) UnresolvedUsingTypenameDecl( in CreateDeserialized()
DDeclPrinter.cpp90 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
1353 DeclPrinter::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
DASTDumper.cpp474 void VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D);
1479 const UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
DASTContext.cpp1220 isa<UnresolvedUsingTypenameDecl>(Pattern)) && in setInstantiatedFromUsingDecl()
3206 } else if (const UnresolvedUsingTypenameDecl *Using = in getTypeDeclTypeSlow()
3207 dyn_cast<UnresolvedUsingTypenameDecl>(Decl)) { in getTypeDeclTypeSlow()
/external/clang/tools/libclang/
DCursorVisitor.h240 bool VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
DCIndex.cpp1234 UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
/external/clang/lib/Index/
DUSRGeneration.cpp110 void VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
/external/clang/lib/Serialization/
DASTReaderDecl.cpp275 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
1453 UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
2768 if (auto *UX = dyn_cast<UnresolvedUsingTypenameDecl>(X)) in isSameEntity()
2771 cast<UnresolvedUsingTypenameDecl>(Y)->getQualifier()); in isSameEntity()
3274 D = UnresolvedUsingTypenameDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
DASTWriterDecl.cpp70 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
1158 UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
DASTReader.cpp5409 ReadDeclAs<UnresolvedUsingTypenameDecl>(*Loc.F, Record, Idx)); in readTypeRecord()
/external/clang/lib/Sema/
DSemaTemplateInstantiateDecl.cpp2468 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
4483 static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern, in isInstantiationOf()
4508 if (UnresolvedUsingTypenameDecl *UUD in isInstantiationOf()
4509 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) { in isInstantiationOf()
DSemaDeclCXX.cpp8303 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext, in BuildUsingDeclaration()
8529 } else if (UnresolvedUsingTypenameDecl *UD in CheckUsingDeclRedeclaration()
8530 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) { in CheckUsingDeclRedeclaration()
DTreeTransform.h11641 assert(isa<UnresolvedUsingTypenameDecl>(D) && in RebuildUnresolvedUsingType()
11643 Ty = cast<UnresolvedUsingTypenameDecl>(D); in RebuildUnresolvedUsingType()
DSemaCodeComplete.cpp5525 } else if (ND && isa<UnresolvedUsingTypenameDecl>(ND)) { in CodeCompleteObjCSuperMessage()
DSemaDecl.cpp1352 isa<UnresolvedUsingTypenameDecl>(D) || in isUsingDecl()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1213 UnresolvedUsingTypenameDecl> unresolvedUsingTypenameDecl;