| /NextBSD/contrib/llvm/tools/clang/include/clang/Sema/ |
| HD | Scope.h | 31 class UsingDirectiveDecl; variable 189 typedef SmallVector<UsingDirectiveDecl *, 2> UsingDirectivesTy; 439 void PushUsingDirective(UsingDirectiveDecl *UDir) { in PushUsingDirective()
|
| HD | Sema.h | 4063 void PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir);
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | DeclCXX.cpp | 1971 void UsingDirectiveDecl::anchor() { } in anchor() 1973 UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC, in Create() 1982 return new (C, DC) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierLoc, in Create() 1986 UsingDirectiveDecl *UsingDirectiveDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized() 1988 return new (C, ID) UsingDirectiveDecl(nullptr, SourceLocation(), in CreateDeserialized() 1994 NamespaceDecl *UsingDirectiveDecl::getNominatedNamespace() { in getNominatedNamespace()
|
| HD | DeclBase.cpp | 1253 if ((D->getIdentifierNamespace() == 0 && !isa<UsingDirectiveDecl>(D)) || in shouldBeHidden() 1611 UsingDirectiveDecl *DeclContext::udir_iterator::operator*() const { in operator *() 1612 return cast<UsingDirectiveDecl>(*I); in operator *() 1620 lookup_result Result = lookup(UsingDirectiveDecl::getName()); in using_directives()
|
| HD | DeclPrinter.cpp | 74 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D); 763 void DeclPrinter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
|
| HD | ASTDumper.cpp | 430 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D); 1204 void ASTDumper::VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
|
| HD | Decl.cpp | 1550 if (auto *UD = dyn_cast<UsingDirectiveDecl>(this)) in declarationReplaces() 1552 cast<UsingDirectiveDecl>(OldD)->getNominatedNamespace() in declarationReplaces()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | DeclCXX.h | 2559 class UsingDirectiveDecl : public NamedDecl { 2585 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, in UsingDirectiveDecl() function 2615 return const_cast<UsingDirectiveDecl*>(this)->getNominatedNamespace(); in getNominatedNamespace() 2633 static UsingDirectiveDecl *Create(ASTContext &C, DeclContext *DC, 2640 static UsingDirectiveDecl *CreateDeserialized(ASTContext &C, unsigned ID);
|
| HD | DeclBase.h | 56 class UsingDirectiveDecl; variable 1677 UsingDirectiveDecl *> udir_iterator_base; 1680 UsingDirectiveDecl *operator*() const;
|
| HD | DeclarationName.h | 36 class UsingDirectiveDecl; variable
|
| HD | DataRecursiveASTVisitor.h | 1380 DEF_TRAVERSE_DECL(UsingDirectiveDecl, {
|
| HD | RecursiveASTVisitor.h | 1454 DEF_TRAVERSE_DECL(UsingDirectiveDecl, {
|
| /NextBSD/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CGDebugInfo.h | 324 void EmitUsingDirective(const UsingDirectiveDecl &UD);
|
| HD | CGDecl.cpp | 107 DI->EmitUsingDirective(cast<UsingDirectiveDecl>(D)); in EmitDecl()
|
| HD | CodeGenModule.cpp | 3290 DI->EmitUsingDirective(cast<UsingDirectiveDecl>(*D)); in EmitTopLevelDecl()
|
| HD | CGDebugInfo.cpp | 3234 void CGDebugInfo::EmitUsingDirective(const UsingDirectiveDecl &UD) { in EmitUsingDirective()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Index/ |
| HD | USRGeneration.cpp | 96 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Symbol/ |
| HD | ClangASTContext.cpp | 1724 UsingDirectiveDecl* using_directive_decl = UsingDirectiveDecl::Create (*ast, in GetUniqueNamespaceDeclaration()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | SemaTemplateInstantiateDecl.cpp | 2231 Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl() 2235 UsingDirectiveDecl *Inst in VisitUsingDirectiveDecl() 2236 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(), in VisitUsingDirectiveDecl()
|
| HD | SemaLookup.cpp | 143 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in visit() 180 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in addUsingDirective()
|
| HD | SemaDeclCXX.cpp | 7296 UsingDirectiveDecl* UD in ActOnStartNamespaceDef() 7297 = UsingDirectiveDecl::Create(Context, Parent, in ActOnStartNamespaceDef() 7563 UsingDirectiveDecl *UDir = nullptr; in ActOnUsingDirective() 7613 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective() 7633 void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) { in PushUsingDirective()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Serialization/ |
| HD | ASTWriterDecl.cpp | 56 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D); 1055 void ASTDeclWriter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
|
| HD | ASTReaderDecl.cpp | 269 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D); 1388 void ASTDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl() 3151 D = UsingDirectiveDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/ASTMatchers/ |
| HD | ASTMatchers.h | 951 const internal::VariadicDynCastAllOfMatcher<Decl, UsingDirectiveDecl>
|