Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DScope.h35 class UsingDirectiveDecl; variable
233 using UsingDirectivesTy = SmallVector<UsingDirectiveDecl *, 2>;
605 void PushUsingDirective(UsingDirectiveDecl *UDir) { in PushUsingDirective()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp2973 void UsingDirectiveDecl::anchor() {} in anchor()
2975 UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC, in Create()
2984 return new (C, DC) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierLoc, in Create()
2988 UsingDirectiveDecl *UsingDirectiveDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
2990 return new (C, ID) UsingDirectiveDecl(nullptr, SourceLocation(), in CreateDeserialized()
2996 NamespaceDecl *UsingDirectiveDecl::getNominatedNamespace() { in getNominatedNamespace()
H A DDeclBase.cpp1651 if ((D->getIdentifierNamespace() == 0 && !isa<UsingDirectiveDecl>(D)) || in shouldBeHidden()
2130 UsingDirectiveDecl *DeclContext::udir_iterator::operator*() const { in operator *()
2131 return cast<UsingDirectiveDecl>(*I); in operator *()
2139 lookup_result Result = lookup(UsingDirectiveDecl::getName()); in using_directives()
H A DDeclPrinter.cpp80 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
1051 void DeclPrinter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
H A DJSONNodeDumper.cpp890 void JSONNodeDumper::VisitUsingDirectiveDecl(const UsingDirectiveDecl *UDD) { in VisitUsingDirectiveDecl()
H A DTextNodeDumper.cpp2393 void TextNodeDumper::VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclBase.h68 class UsingDirectiveDecl; variable
2622 UsingDirectiveDecl *>;
2627 UsingDirectiveDecl *operator*() const;
H A DTextNodeDumper.h373 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D);
H A DDeclCXX.h3022 class UsingDirectiveDecl : public NamedDecl {
3039 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, in UsingDirectiveDecl() function
3084 return const_cast<UsingDirectiveDecl*>(this)->getNominatedNamespace(); in getNominatedNamespace()
3102 static UsingDirectiveDecl *Create(ASTContext &C, DeclContext *DC,
3109 static UsingDirectiveDecl *CreateDeserialized(ASTContext &C, GlobalDeclID ID);
H A DJSONNodeDumper.h251 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *UDD);
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DHLSLExternalSemaSource.cpp420 auto *UsingDecl = UsingDirectiveDecl::Create( in InitializeSema()
H A DSemaTemplateInstantiateDecl.cpp3275 Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
3279 UsingDirectiveDecl *Inst in VisitUsingDirectiveDecl()
3280 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(), in VisitUsingDirectiveDecl()
H A DSemaLookup.cpp148 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in visit()
185 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in addUsingDirective()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DIndexSymbol.cpp62 if (isa<UsingDirectiveDecl>(D)) in isFunctionLocalSymbol()
H A DIndexDecl.cpp626 bool VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
H A DUSRGeneration.cpp114 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.h552 void EmitUsingDirective(const UsingDirectiveDecl &UD);
H A DCGDecl.cpp158 DI->EmitUsingDirective(cast<UsingDirectiveDecl>(D)); in EmitDecl()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h1103 clang::UsingDirectiveDecl *
H A DTypeSystemClang.cpp1943 clang::UsingDirectiveDecl *TypeSystemClang::CreateUsingDirectiveDeclaration( in CreateUsingDirectiveDeclaration()
1948 clang::UsingDirectiveDecl *using_decl = clang::UsingDirectiveDecl::Create( in CreateUsingDirectiveDeclaration()
9298 if (clang::UsingDirectiveDecl *ud = in DeclContextFindDeclByName()
9299 llvm::dyn_cast<clang::UsingDirectiveDecl>(child)) { in DeclContextFindDeclByName()
9412 if (clang::UsingDirectiveDecl *ud = in CountDeclLevels()
9413 llvm::dyn_cast<clang::UsingDirectiveDecl>(child)) { in CountDeclLevels()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp333 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
1927 void ASTDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
3904 D = UsingDirectiveDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp68 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
1463 void ASTDeclWriter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1554 bool WalkUpFromUsingDirectiveDecl(UsingDirectiveDecl *S) { in WalkUpFromUsingDirectiveDecl()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp239 UsingDirectiveDecl *ImplicitUsingDirectiveDecl = nullptr; in ParseNamespace()
286 UsingDirectiveDecl *ImplicitUsingDirectiveDecl = nullptr; in ParseInnerNamespace()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1802 extern const internal::VariadicDynCastAllOfMatcher<Decl, UsingDirectiveDecl>

12