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()
/external/clang/lib/AST/
DDeclCXX.cpp1949 void UsingDirectiveDecl::anchor() { } in anchor()
1951 UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC, in Create()
1960 return new (C, DC) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierLoc, in Create()
1964 UsingDirectiveDecl *UsingDirectiveDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
1966 return new (C, ID) UsingDirectiveDecl(nullptr, SourceLocation(), in CreateDeserialized()
1972 NamespaceDecl *UsingDirectiveDecl::getNominatedNamespace() { in getNominatedNamespace()
DDeclBase.cpp1241 if ((D->getIdentifierNamespace() == 0 && !isa<UsingDirectiveDecl>(D)) || in shouldBeHidden()
1599 UsingDirectiveDecl *DeclContext::udir_iterator::operator*() const { in operator *()
1600 return cast<UsingDirectiveDecl>(*I); in operator *()
1608 lookup_result Result = lookup(UsingDirectiveDecl::getName()); in using_directives()
DDeclPrinter.cpp65 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
752 void DeclPrinter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
DASTDumper.cpp427 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D);
1182 void ASTDumper::VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
DDecl.cpp1544 if (auto *UD = dyn_cast<UsingDirectiveDecl>(this)) in declarationReplaces()
1546 cast<UsingDirectiveDecl>(OldD)->getNominatedNamespace() in declarationReplaces()
/external/clang/tools/libclang/
DCursorVisitor.h234 bool VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
DIndexDecl.cpp267 bool VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
DCIndex.cpp1167 bool CursorVisitor::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
3547 if (isa<UsingDirectiveDecl>(D)) in getDeclSpelling()
5025 return MakeCXCursor(cast<UsingDirectiveDecl>(D)->getNominatedNamespace(), in clang_getCursorDefinition()
/external/clang/include/clang/AST/
DDeclCXX.h2555 class UsingDirectiveDecl : public NamedDecl {
2581 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, in UsingDirectiveDecl() function
2611 return const_cast<UsingDirectiveDecl*>(this)->getNominatedNamespace(); in getNominatedNamespace()
2629 static UsingDirectiveDecl *Create(ASTContext &C, DeclContext *DC,
2636 static UsingDirectiveDecl *CreateDeserialized(ASTContext &C, unsigned ID);
DDeclBase.h56 class UsingDirectiveDecl; variable
1655 UsingDirectiveDecl *> udir_iterator_base;
1658 UsingDirectiveDecl *operator*() const;
DDeclarationName.h36 class UsingDirectiveDecl; variable
DDataRecursiveASTVisitor.h1354 DEF_TRAVERSE_DECL(UsingDirectiveDecl, {
DRecursiveASTVisitor.h1426 DEF_TRAVERSE_DECL(UsingDirectiveDecl, {
/external/clang/lib/CodeGen/
DCGDebugInfo.h284 void EmitUsingDirective(const UsingDirectiveDecl &UD);
DCGDecl.cpp105 DI->EmitUsingDirective(cast<UsingDirectiveDecl>(D)); in EmitDecl()
DCodeGenModule.cpp3289 DI->EmitUsingDirective(cast<UsingDirectiveDecl>(*D)); in EmitTopLevelDecl()
/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.cpp2192 Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
2196 UsingDirectiveDecl *Inst in VisitUsingDirectiveDecl()
2197 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(), in VisitUsingDirectiveDecl()
DSemaLookup.cpp140 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in visit()
177 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in addUsingDirective()
DSemaDeclCXX.cpp7263 UsingDirectiveDecl* UD in ActOnStartNamespaceDef()
7264 = UsingDirectiveDecl::Create(Context, Parent, in ActOnStartNamespaceDef()
7530 UsingDirectiveDecl *UDir = nullptr; in ActOnUsingDirective()
7580 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective()
7600 void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) { in PushUsingDirective()
/external/clang/lib/Serialization/
DASTWriterDecl.cpp56 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
1057 void ASTDeclWriter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
DASTReaderDecl.cpp264 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
1268 void ASTDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
3027 D = UsingDirectiveDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h942 const internal::VariadicDynCastAllOfMatcher<Decl, UsingDirectiveDecl>

12