Home
last modified time | relevance | path

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

12

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DScope.h35 class UsingDirectiveDecl; variable
217 using UsingDirectivesTy = SmallVector<UsingDirectiveDecl *, 2>;
546 void PushUsingDirective(UsingDirectiveDecl *UDir) { in PushUsingDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp2920 void UsingDirectiveDecl::anchor() {} in anchor()
2922 UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC, in Create()
2931 return new (C, DC) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierLoc, in Create()
2935 UsingDirectiveDecl *UsingDirectiveDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
2937 return new (C, ID) UsingDirectiveDecl(nullptr, SourceLocation(), in CreateDeserialized()
2943 NamespaceDecl *UsingDirectiveDecl::getNominatedNamespace() { in getNominatedNamespace()
H A DDeclBase.cpp1587 if ((D->getIdentifierNamespace() == 0 && !isa<UsingDirectiveDecl>(D)) || in shouldBeHidden()
2066 UsingDirectiveDecl *DeclContext::udir_iterator::operator*() const { in operator *()
2067 return cast<UsingDirectiveDecl>(*I); in operator *()
2075 lookup_result Result = lookup(UsingDirectiveDecl::getName()); in using_directives()
H A DDeclPrinter.cpp91 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
1109 void DeclPrinter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
H A DJSONNodeDumper.cpp858 void JSONNodeDumper::VisitUsingDirectiveDecl(const UsingDirectiveDecl *UDD) { in VisitUsingDirectiveDecl()
H A DTextNodeDumper.cpp2142 void TextNodeDumper::VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclBase.h67 class UsingDirectiveDecl; variable
2604 UsingDirectiveDecl *>;
2609 UsingDirectiveDecl *operator*() const;
H A DTextNodeDumper.h359 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D);
H A DDeclCXX.h3008 class UsingDirectiveDecl : public NamedDecl {
3025 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, in UsingDirectiveDecl() function
3070 return const_cast<UsingDirectiveDecl*>(this)->getNominatedNamespace(); in getNominatedNamespace()
3088 static UsingDirectiveDecl *Create(ASTContext &C, DeclContext *DC,
3095 static UsingDirectiveDecl *CreateDeserialized(ASTContext &C, unsigned ID);
H A DJSONNodeDumper.h248 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *UDD);
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DHLSLExternalSemaSource.cpp410 auto *UsingDecl = UsingDirectiveDecl::Create( in InitializeSema()
H A DSemaTemplateInstantiateDecl.cpp3229 Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
3233 UsingDirectiveDecl *Inst in VisitUsingDirectiveDecl()
3234 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(), in VisitUsingDirectiveDecl()
H A DSemaLookup.cpp146 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in visit()
183 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in addUsingDirective()
/freebsd-14.2/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-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.h536 void EmitUsingDirective(const UsingDirectiveDecl &UD);
/freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp861 const internal::VariadicDynCastAllOfMatcher<Decl, UsingDirectiveDecl>
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp1991 clang::UsingDirectiveDecl *TypeSystemClang::CreateUsingDirectiveDeclaration( in CreateUsingDirectiveDeclaration()
1996 clang::UsingDirectiveDecl *using_decl = clang::UsingDirectiveDecl::Create( in CreateUsingDirectiveDeclaration()
9099 if (clang::UsingDirectiveDecl *ud = in DeclContextFindDeclByName()
9100 llvm::dyn_cast<clang::UsingDirectiveDecl>(child)) { in DeclContextFindDeclByName()
9214 if (clang::UsingDirectiveDecl *ud = in CountDeclLevels()
9215 llvm::dyn_cast<clang::UsingDirectiveDecl>(child)) { in CountDeclLevels()
H A DTypeSystemClang.h1082 clang::UsingDirectiveDecl *
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp436 if (auto *U = dyn_cast<UsingDirectiveDecl>(D)) in getDeclValue()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp338 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
1940 void ASTDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
3879 D = UsingDirectiveDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp65 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
1425 void ASTDeclWriter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1553 bool WalkUpFromUsingDirectiveDecl(UsingDirectiveDecl *S) { in WalkUpFromUsingDirectiveDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp230 UsingDirectiveDecl *ImplicitUsingDirectiveDecl = nullptr; in ParseNamespace()
277 UsingDirectiveDecl *ImplicitUsingDirectiveDecl = nullptr; in ParseInnerNamespace()

12