Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DDeclCXX.cpp2003 void UnresolvedUsingTypenameDecl::anchor() { } in anchor()
2005 UnresolvedUsingTypenameDecl *
2006 UnresolvedUsingTypenameDecl::Create(ASTContext &C, DeclContext *DC, in Create()
2012 return new (C) UnresolvedUsingTypenameDecl(DC, UsingLoc, TypenameLoc, in Create()
2017 UnresolvedUsingTypenameDecl *
2018 UnresolvedUsingTypenameDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
2020 sizeof(UnresolvedUsingTypenameDecl)); in CreateDeserialized()
2021 return new (Mem) UnresolvedUsingTypenameDecl(0, SourceLocation(), in CreateDeserialized()
DDeclPrinter.cpp81 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
1167 DeclPrinter::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
DASTDumper.cpp226 void VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D);
1124 const UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
DASTContext.cpp1113 isa<UnresolvedUsingTypenameDecl>(Pattern)) && in setInstantiatedFromUsingDecl()
2928 } else if (const UnresolvedUsingTypenameDecl *Using = in getTypeDeclTypeSlow()
2929 dyn_cast<UnresolvedUsingTypenameDecl>(Decl)) { in getTypeDeclTypeSlow()
/external/clang/tools/libclang/
DCursorVisitor.h237 bool VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
DCIndexUSRs.cpp99 void VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
DRecursiveASTVisitor.h1555 DEF_TRAVERSE_DECL(UnresolvedUsingTypenameDecl, {
DCIndex.cpp1186 UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
/external/clang/include/clang/AST/
DDeclCXX.h2899 class UnresolvedUsingTypenameDecl : public TypeDecl {
2908 UnresolvedUsingTypenameDecl(DeclContext *DC, SourceLocation UsingLoc, in UnresolvedUsingTypenameDecl() function
2935 static UnresolvedUsingTypenameDecl *
2940 static UnresolvedUsingTypenameDecl *
DType.h88 class UnresolvedUsingTypenameDecl;
3083 UnresolvedUsingTypenameDecl *Decl;
3085 UnresolvedUsingType(const UnresolvedUsingTypenameDecl *D)
3088 Decl(const_cast<UnresolvedUsingTypenameDecl*>(D)) {}
3092 UnresolvedUsingTypenameDecl *getDecl() const { return Decl; }
3105 UnresolvedUsingTypenameDecl *D) {
DTypeLoc.h611 UnresolvedUsingTypenameDecl *getDecl() const { in getDecl()
DRecursiveASTVisitor.h1638 DEF_TRAVERSE_DECL(UnresolvedUsingTypenameDecl, {
/external/clang/lib/Sema/
DSemaTemplateInstantiateDecl.cpp2162 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
3891 static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern, in isInstantiationOf()
3916 if (UnresolvedUsingTypenameDecl *UUD in isInstantiationOf()
3917 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) { in isInstantiationOf()
DSemaDeclCXX.cpp7139 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext, in BuildUsingDeclaration()
7330 } else if (UnresolvedUsingTypenameDecl *UD in CheckUsingDeclRedeclaration()
7331 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) { in CheckUsingDeclRedeclaration()
DTreeTransform.h9396 assert(isa<UnresolvedUsingTypenameDecl>(D) && in RebuildUnresolvedUsingType()
9398 Ty = cast<UnresolvedUsingTypenameDecl>(D); in RebuildUnresolvedUsingType()
DSemaCodeComplete.cpp5341 } else if (ND && isa<UnresolvedUsingTypenameDecl>(ND)) { in CodeCompleteObjCSuperMessage()
DSemaDecl.cpp1154 isa<UnresolvedUsingTypenameDecl>(D) || in isUsingDecl()
/external/clang/lib/Serialization/
DASTReaderDecl.cpp225 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
1118 UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
2272 D = UnresolvedUsingTypenameDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
DASTWriterDecl.cpp62 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
952 UnresolvedUsingTypenameDecl *D) { in VisitUnresolvedUsingTypenameDecl()
DASTReader.cpp4694 ReadDeclAs<UnresolvedUsingTypenameDecl>(*Loc.F, Record, Idx)); in readTypeRecord()