Home
last modified time | relevance | path

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

12

/external/clang/include/clang/Sema/
DScope.h31 class UsingDirectiveDecl; variable
189 typedef SmallVector<UsingDirectiveDecl *, 2> UsingDirectivesTy;
439 void PushUsingDirective(UsingDirectiveDecl *UDir) { in PushUsingDirective()
DSema.h4101 UsingDirectiveDecl * &UsingDecl);
4131 void PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir);
/external/clang/lib/AST/
DDeclCXX.cpp1965 void UsingDirectiveDecl::anchor() { } in anchor()
1967 UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC, in Create()
1976 return new (C, DC) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierLoc, in Create()
1980 UsingDirectiveDecl *UsingDirectiveDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
1982 return new (C, ID) UsingDirectiveDecl(nullptr, SourceLocation(), in CreateDeserialized()
1988 NamespaceDecl *UsingDirectiveDecl::getNominatedNamespace() { in getNominatedNamespace()
DDeclBase.cpp1277 if ((D->getIdentifierNamespace() == 0 && !isa<UsingDirectiveDecl>(D)) || in shouldBeHidden()
1635 UsingDirectiveDecl *DeclContext::udir_iterator::operator*() const { in operator *()
1636 return cast<UsingDirectiveDecl>(*I); in operator *()
1644 lookup_result Result = lookup(UsingDirectiveDecl::getName()); in using_directives()
DDeclPrinter.cpp74 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
798 void DeclPrinter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
DASTDumper.cpp431 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D);
1206 void ASTDumper::VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
DDecl.cpp1560 if (auto *UD = dyn_cast<UsingDirectiveDecl>(this)) in declarationReplaces()
1562 cast<UsingDirectiveDecl>(OldD)->getNominatedNamespace() in declarationReplaces()
/external/clang/tools/libclang/
DCursorVisitor.h237 bool VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
DIndexDecl.cpp267 bool VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
DCIndex.cpp1211 bool CursorVisitor::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
3706 if (isa<UsingDirectiveDecl>(D)) in getDeclSpelling()
5280 return MakeCXCursor(cast<UsingDirectiveDecl>(D)->getNominatedNamespace(), in clang_getCursorDefinition()
/external/clang/include/clang/AST/
DDeclCXX.h2549 class UsingDirectiveDecl : public NamedDecl {
2575 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, in UsingDirectiveDecl() function
2605 return const_cast<UsingDirectiveDecl*>(this)->getNominatedNamespace(); in getNominatedNamespace()
2623 static UsingDirectiveDecl *Create(ASTContext &C, DeclContext *DC,
2630 static UsingDirectiveDecl *CreateDeserialized(ASTContext &C, unsigned ID);
DDeclBase.h56 class UsingDirectiveDecl; variable
1698 UsingDirectiveDecl *> udir_iterator_base;
1701 UsingDirectiveDecl *operator*() const;
DDeclarationName.h36 class UsingDirectiveDecl; variable
DRecursiveASTVisitor.h1416 DEF_TRAVERSE_DECL(UsingDirectiveDecl, {
/external/clang/lib/CodeGen/
DCGDebugInfo.h348 void EmitUsingDirective(const UsingDirectiveDecl &UD);
DCGDecl.cpp109 DI->EmitUsingDirective(cast<UsingDirectiveDecl>(D)); in EmitDecl()
/external/clang/lib/Index/
DUSRGeneration.cpp96 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
/external/lldb/source/Symbol/
DClangASTContext.cpp1879 UsingDirectiveDecl* using_directive_decl = UsingDirectiveDecl::Create (*ast, in GetUniqueNamespaceDeclaration()
/external/clang/lib/Sema/
DSemaTemplateInstantiateDecl.cpp2256 Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
2260 UsingDirectiveDecl *Inst in VisitUsingDirectiveDecl()
2261 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(), in VisitUsingDirectiveDecl()
DSemaLookup.cpp144 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in visit()
181 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in addUsingDirective()
DSemaDeclCXX.cpp7174 UsingDirectiveDecl *&UD) { in ActOnStartNamespaceDef()
7288 UD = UsingDirectiveDecl::Create(Context, Parent, in ActOnStartNamespaceDef()
7554 UsingDirectiveDecl *UDir = nullptr; in ActOnUsingDirective()
7604 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective()
7624 void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) { in PushUsingDirective()
/external/clang/lib/Serialization/
DASTWriterDecl.cpp56 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
1105 void ASTDeclWriter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
DASTReaderDecl.cpp245 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
1368 void ASTDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
3153 D = UsingDirectiveDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
/external/clang/lib/Parse/
DParseDeclCXX.cpp184 UsingDirectiveDecl *ImplicitUsingDirectiveDecl = nullptr; in ParseNamespace()
235 UsingDirectiveDecl *ImplicitUsingDirectiveDecl = nullptr; in ParseInnerNamespace()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1015 UsingDirectiveDecl> usingDirectiveDecl;

12