Home
last modified time | relevance | path

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

12

/minix3/external/bsd/llvm/dist/clang/include/clang/Sema/
H A DScope.h31 class UsingDirectiveDecl; variable
181 typedef SmallVector<UsingDirectiveDecl *, 2> UsingDirectivesTy;
414 void PushUsingDirective(UsingDirectiveDecl *UDir) { in PushUsingDirective()
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DDeclCXX.cpp1937 void UsingDirectiveDecl::anchor() { } in anchor()
1939 UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC, in Create()
1948 return new (C, DC) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierLoc, in Create()
1952 UsingDirectiveDecl *UsingDirectiveDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
1954 return new (C, ID) UsingDirectiveDecl(nullptr, SourceLocation(), in CreateDeserialized()
1960 NamespaceDecl *UsingDirectiveDecl::getNominatedNamespace() { in getNominatedNamespace()
H A DDeclBase.cpp1219 if ((D->getIdentifierNamespace() == 0 && !isa<UsingDirectiveDecl>(D)) || in shouldBeHidden()
1578 lookup_const_result Result = lookup(UsingDirectiveDecl::getName()); in using_directives()
1580 reinterpret_cast<UsingDirectiveDecl *const *>(Result.begin()), in using_directives()
1581 reinterpret_cast<UsingDirectiveDecl *const *>(Result.end())); in using_directives()
H A DDeclPrinter.cpp65 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
752 void DeclPrinter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
H A DASTDumper.cpp427 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D);
1176 void ASTDumper::VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
H A DDecl.cpp1454 return cast<UsingDirectiveDecl>(this)->getNominatedNamespace() in declarationReplaces()
1456 cast<UsingDirectiveDecl>(OldD)->getNominatedNamespace() in declarationReplaces()
/minix3/external/bsd/llvm/dist/clang/tools/libclang/
H A DCursorVisitor.h234 bool VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
H A DIndexDecl.cpp267 bool VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
H A DCIndex.cpp1168 bool CursorVisitor::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
3486 if (isa<UsingDirectiveDecl>(D)) in getDeclSpelling()
4961 return MakeCXCursor(cast<UsingDirectiveDecl>(D)->getNominatedNamespace(), in clang_getCursorDefinition()
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A 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);
H A DDeclarationName.h36 class UsingDirectiveDecl; variable
H A DDeclBase.h55 class UsingDirectiveDecl; variable
1596 typedef llvm::iterator_range<UsingDirectiveDecl * const *> udir_range;
H A DDataRecursiveASTVisitor.h1352 DEF_TRAVERSE_DECL(UsingDirectiveDecl, {
H A DRecursiveASTVisitor.h1424 DEF_TRAVERSE_DECL(UsingDirectiveDecl, {
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGDebugInfo.h287 void EmitUsingDirective(const UsingDirectiveDecl &UD);
H A DCGDecl.cpp104 DI->EmitUsingDirective(cast<UsingDirectiveDecl>(D)); in EmitDecl()
H A DCodeGenModule.cpp3203 DI->EmitUsingDirective(cast<UsingDirectiveDecl>(*D)); in EmitTopLevelDecl()
H A DCGDebugInfo.cpp3283 void CGDebugInfo::EmitUsingDirective(const UsingDirectiveDecl &UD) { in EmitUsingDirective()
/minix3/external/bsd/llvm/dist/clang/lib/Index/
H A DUSRGeneration.cpp96 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp2187 Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
2191 UsingDirectiveDecl *Inst in VisitUsingDirectiveDecl()
2192 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(), in VisitUsingDirectiveDecl()
H A DSemaLookup.cpp140 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in visit()
177 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in addUsingDirective()
H A DSemaDeclCXX.cpp7200 UsingDirectiveDecl* UD in ActOnStartNamespaceDef()
7201 = UsingDirectiveDecl::Create(Context, Parent, in ActOnStartNamespaceDef()
7467 UsingDirectiveDecl *UDir = nullptr; in ActOnUsingDirective()
7517 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective()
7537 void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) { in PushUsingDirective()
/minix3/external/bsd/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp251 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
1241 void ASTDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
2948 D = UsingDirectiveDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp56 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
982 void ASTDeclWriter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
/minix3/external/bsd/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h916 const internal::VariadicDynCastAllOfMatcher<Decl, UsingDirectiveDecl>

12