HomeSort by: relevance | last modified time | path
    Searched refs:UsingDirectiveDecl (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Scope.h 34 class UsingDirectiveDecl;
207 using UsingDirectivesTy = SmallVector<UsingDirectiveDecl *, 2>;
496 void PushUsingDirective(UsingDirectiveDecl *UDir) {
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CursorVisitor.h 238 bool VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
CXIndexDataConsumer.cpp 120 bool VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclBase.h 71 class UsingDirectiveDecl;
2382 UsingDirectiveDecl *>;
2387 UsingDirectiveDecl *operator*() const;
JSONNodeDumper.h 234 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *UDD);
TextNodeDumper.h 338 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D);
DeclCXX.h 2876 /// \note UsingDirectiveDecl should be Decl not NamedDecl, but we provide
2879 class UsingDirectiveDecl : public NamedDecl {
2896 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc,
2941 return const_cast<UsingDirectiveDecl*>(this)->getNominatedNamespace();
2959 static UsingDirectiveDecl *Create(ASTContext &C, DeclContext *DC,
2966 static UsingDirectiveDecl *CreateDeserialized(ASTContext &C, unsigned ID);
DeclarationName.h 41 class UsingDirectiveDecl;
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclBase.cpp 1434 if ((D->getIdentifierNamespace() == 0 && !isa<UsingDirectiveDecl>(D)) ||
1908 UsingDirectiveDecl *DeclContext::udir_iterator::operator*() const {
1909 return cast<UsingDirectiveDecl>(*I);
1917 lookup_result Result = lookup(UsingDirectiveDecl::getName());
DeclCXX.cpp 2835 void UsingDirectiveDecl::anchor() {}
2837 UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC,
2846 return new (C, DC) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierLoc,
2850 UsingDirectiveDecl *UsingDirectiveDecl::CreateDeserialized(ASTContext &C,
2852 return new (C, ID) UsingDirectiveDecl(nullptr, SourceLocation(),
2858 NamespaceDecl *UsingDirectiveDecl::getNominatedNamespace() {
DeclPrinter.cpp 78 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
964 void DeclPrinter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
JSONNodeDumper.cpp 738 void JSONNodeDumper::VisitUsingDirectiveDecl(const UsingDirectiveDecl *UDD) {
TextNodeDumper.cpp 1833 void TextNodeDumper::VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) {
  /src/external/apache2/llvm/dist/clang/lib/Index/
IndexSymbol.cpp 62 if (isa<UsingDirectiveDecl>(D))
IndexDecl.cpp 604 bool VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) {
USRGeneration.cpp 111 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaModule.cpp 603 if (isa<UsingDirectiveDecl>(D))
SemaTemplateInstantiateDecl.cpp 2962 Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
2966 UsingDirectiveDecl *Inst
2967 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.h 497 void EmitUsingDirective(const UsingDirectiveDecl &UD);
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 844 const internal::VariadicDynCastAllOfMatcher<Decl, UsingDirectiveDecl>
845 usingDirectiveDecl;
  /src/external/apache2/llvm/dist/clang/lib/Tooling/ASTDiff/
ASTDiff.cpp 437 if (auto *U = dyn_cast<UsingDirectiveDecl>(D))
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 324 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
1683 void ASTDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
3845 D = UsingDirectiveDecl::CreateDeserialized(Context, ID);
ASTWriterDecl.cpp 64 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
1308 void ASTDeclWriter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
BuildTree.cpp 1548 bool WalkUpFromUsingDirectiveDecl(UsingDirectiveDecl *S) {
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseDeclCXX.cpp 214 UsingDirectiveDecl *ImplicitUsingDirectiveDecl = nullptr;
260 UsingDirectiveDecl *ImplicitUsingDirectiveDecl = nullptr;

Completed in 76 milliseconds

1 2