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

/external/clang/tools/libclang/
H A DCursorVisitor.h237 bool VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
H A DCIndex.cpp1185 UnresolvedUsingTypenameDecl *D) {
/external/clang/lib/AST/
H A DDeclCXX.cpp2087 void UnresolvedUsingTypenameDecl::anchor() { }
2089 UnresolvedUsingTypenameDecl *
2090 UnresolvedUsingTypenameDecl::Create(ASTContext &C, DeclContext *DC,
2096 return new (C, DC) UnresolvedUsingTypenameDecl(
2101 UnresolvedUsingTypenameDecl *
2102 UnresolvedUsingTypenameDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2103 return new (C, ID) UnresolvedUsingTypenameDecl(
H A DDeclPrinter.cpp81 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
1168 DeclPrinter::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
H A DASTDumper.cpp281 void VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D);
1240 const UnresolvedUsingTypenameDecl *D) {
H A DASTContext.cpp1151 isa<UnresolvedUsingTypenameDecl>(Pattern)) &&
2961 } else if (const UnresolvedUsingTypenameDecl *Using =
2962 dyn_cast<UnresolvedUsingTypenameDecl>(Decl)) {
/external/clang/include/clang/AST/
H A DDeclCXX.h3043 class UnresolvedUsingTypenameDecl : public TypeDecl { class in namespace:clang
3052 UnresolvedUsingTypenameDecl(DeclContext *DC, SourceLocation UsingLoc, function in class:clang::UnresolvedUsingTypenameDecl
3079 static UnresolvedUsingTypenameDecl *
3084 static UnresolvedUsingTypenameDecl *
H A DType.h87 class UnresolvedUsingTypenameDecl;
3122 UnresolvedUsingTypenameDecl *Decl;
3124 UnresolvedUsingType(const UnresolvedUsingTypenameDecl *D)
3127 Decl(const_cast<UnresolvedUsingTypenameDecl*>(D)) {}
3131 UnresolvedUsingTypenameDecl *getDecl() const { return Decl; }
3144 UnresolvedUsingTypenameDecl *D) {
H A DTypeLoc.h614 UnresolvedUsingTypenameDecl *getDecl() const {
H A DDataRecursiveASTVisitor.h1553 DEF_TRAVERSE_DECL(UnresolvedUsingTypenameDecl, {
1653 // Like UnresolvedUsingTypenameDecl, but without the 'typename':
H A DRecursiveASTVisitor.h1587 DEF_TRAVERSE_DECL(UnresolvedUsingTypenameDecl, {
1695 // Like UnresolvedUsingTypenameDecl, but without the 'typename':
/external/clang/lib/Index/
H A DUSRGeneration.cpp105 void VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D) {
/external/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp2227 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
4252 static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
4277 if (UnresolvedUsingTypenameDecl *UUD
4278 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
H A DTreeTransform.h760 /// the UnresolvedUsingTypenameDecl was transformed to.
9934 "UnresolvedUsingTypenameDecl transformed to non-typename using");
9941 assert(isa<UnresolvedUsingTypenameDecl>(D) &&
9942 "UnresolvedUsingTypenameDecl transformed to non-using decl");
9943 Ty = cast<UnresolvedUsingTypenameDecl>(D);
H A DSemaDeclCXX.cpp7628 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
7831 } else if (UnresolvedUsingTypenameDecl *UD
7832 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
H A DSemaCodeComplete.cpp5282 } else if (ND && isa<UnresolvedUsingTypenameDecl>(ND)) {
H A DSemaDecl.cpp1247 isa<UnresolvedUsingTypenameDecl>(D) ||
/external/clang/lib/Serialization/
H A DASTWriterDecl.cpp62 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
980 UnresolvedUsingTypenameDecl *D) {
H A DASTReaderDecl.cpp239 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
1200 UnresolvedUsingTypenameDecl *D) {
2661 D = UnresolvedUsingTypenameDecl::CreateDeserialized(Context, ID);
H A DASTReader.cpp5249 ReadDeclAs<UnresolvedUsingTypenameDecl>(*Loc.F, Record, Idx));

Completed in 390 milliseconds