| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Scope.h | 35 class UsingDirectiveDecl; variable 238 using UsingDirectivesTy = SmallVector<UsingDirectiveDecl *, 2>; 625 void PushUsingDirective(UsingDirectiveDecl *UDir) { in PushUsingDirective()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclCXX.cpp | 3198 void UsingDirectiveDecl::anchor() {} in anchor() 3200 UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC, in Create() 3209 return new (C, DC) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierLoc, in Create() 3213 UsingDirectiveDecl *UsingDirectiveDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized() 3215 return new (C, ID) UsingDirectiveDecl(nullptr, SourceLocation(), in CreateDeserialized() 3221 NamespaceDecl *UsingDirectiveDecl::getNominatedNamespace() { in getNominatedNamespace()
|
| H A D | DeclBase.cpp | 1698 if ((D->getIdentifierNamespace() == 0 && !isa<UsingDirectiveDecl>(D)) || in shouldBeHidden() 2184 UsingDirectiveDecl *DeclContext::udir_iterator::operator*() const { in operator *() 2185 return cast<UsingDirectiveDecl>(*I); in operator *() 2193 lookup_result Result = lookup(UsingDirectiveDecl::getName()); in using_directives()
|
| H A D | DeclPrinter.cpp | 81 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D); 1087 void DeclPrinter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
|
| H A D | JSONNodeDumper.cpp | 892 void JSONNodeDumper::VisitUsingDirectiveDecl(const UsingDirectiveDecl *UDD) { in VisitUsingDirectiveDecl()
|
| H A D | TextNodeDumper.cpp | 2552 void TextNodeDumper::VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | HLSLExternalSemaSource.cpp | 61 auto *UsingDecl = UsingDirectiveDecl::Create( in InitializeSema()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 3820 Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl() 3824 UsingDirectiveDecl *Inst in VisitUsingDirectiveDecl() 3825 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(), in VisitUsingDirectiveDecl()
|
| H A D | SemaLookup.cpp | 147 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in visit() 184 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in addUsingDirective()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclBase.h | 68 class UsingDirectiveDecl; variable 2650 UsingDirectiveDecl *>; 2655 UsingDirectiveDecl *operator*() const;
|
| H A D | DeclCXX.h | 3085 class UsingDirectiveDecl : public NamedDecl { 3102 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, in UsingDirectiveDecl() function 3147 return const_cast<UsingDirectiveDecl*>(this)->getNominatedNamespace(); in getNominatedNamespace() 3165 static UsingDirectiveDecl *Create(ASTContext &C, DeclContext *DC, 3172 static UsingDirectiveDecl *CreateDeserialized(ASTContext &C, GlobalDeclID ID);
|
| H A D | TextNodeDumper.h | 374 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D);
|
| H A D | JSONNodeDumper.h | 251 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *UDD);
|
| /freebsd/contrib/llvm-project/clang/lib/Index/ |
| H A D | IndexSymbol.cpp | 62 if (isa<UsingDirectiveDecl>(D)) in isFunctionLocalSymbol()
|
| H A D | IndexDecl.cpp | 626 bool VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
|
| H A D | USRGeneration.cpp | 110 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGDebugInfo.h | 577 void EmitUsingDirective(const UsingDirectiveDecl &UD);
|
| H A D | CGDecl.cpp | 161 DI->EmitUsingDirective(cast<UsingDirectiveDecl>(D)); in EmitDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 890 const internal::VariadicDynCastAllOfMatcher<Decl, UsingDirectiveDecl>
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 1962 clang::UsingDirectiveDecl *TypeSystemClang::CreateUsingDirectiveDeclaration( in CreateUsingDirectiveDeclaration() 1967 clang::UsingDirectiveDecl *using_decl = clang::UsingDirectiveDecl::Create( in CreateUsingDirectiveDeclaration() 9223 if (clang::UsingDirectiveDecl *ud = in DeclContextFindDeclByName() 9224 llvm::dyn_cast<clang::UsingDirectiveDecl>(child)) { in DeclContextFindDeclByName() 9337 if (clang::UsingDirectiveDecl *ud = in CountDeclLevels() 9338 llvm::dyn_cast<clang::UsingDirectiveDecl>(child)) { in CountDeclLevels()
|
| H A D | TypeSystemClang.h | 1127 clang::UsingDirectiveDecl *
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 324 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D); 1948 void ASTDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl() 3981 D = UsingDirectiveDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| H A D | ASTWriterDecl.cpp | 80 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D); 1638 void ASTDeclWriter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| H A D | BuildTree.cpp | 1546 bool WalkUpFromUsingDirectiveDecl(UsingDirectiveDecl *S) { in WalkUpFromUsingDirectiveDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseDeclCXX.cpp | 204 UsingDirectiveDecl *ImplicitUsingDirectiveDecl = nullptr; in ParseNamespace() 250 UsingDirectiveDecl *ImplicitUsingDirectiveDecl = nullptr; in ParseInnerNamespace()
|