Home
last modified time | relevance | path

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

12

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DScope.h35 class UsingDirectiveDecl; variable
199 using UsingDirectivesTy = SmallVector<UsingDirectiveDecl *, 2>;
458 void PushUsingDirective(UsingDirectiveDecl *UDir) { in PushUsingDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DDeclCXX.cpp2543 void UsingDirectiveDecl::anchor() {} in anchor()
2545 UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC, in Create()
2554 return new (C, DC) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierLoc, in Create()
2558 UsingDirectiveDecl *UsingDirectiveDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
2560 return new (C, ID) UsingDirectiveDecl(nullptr, SourceLocation(), in CreateDeserialized()
2566 NamespaceDecl *UsingDirectiveDecl::getNominatedNamespace() { in getNominatedNamespace()
H A DDeclBase.cpp1404 if ((D->getIdentifierNamespace() == 0 && !isa<UsingDirectiveDecl>(D)) || in shouldBeHidden()
1888 UsingDirectiveDecl *DeclContext::udir_iterator::operator*() const { in operator *()
1889 return cast<UsingDirectiveDecl>(*I); in operator *()
1897 lookup_result Result = lookup(UsingDirectiveDecl::getName()); in using_directives()
H A DDeclPrinter.cpp78 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
899 void DeclPrinter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
H A DASTDumper.cpp242 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D);
815 void ASTDumper::VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclBase.h69 class UsingDirectiveDecl; variable
2270 UsingDirectiveDecl *>;
2275 UsingDirectiveDecl *operator*() const;
H A DDeclCXX.h2916 class UsingDirectiveDecl : public NamedDecl {
2933 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc,
2978 return const_cast<UsingDirectiveDecl*>(this)->getNominatedNamespace();
2996 static UsingDirectiveDecl *Create(ASTContext &C, DeclContext *DC,
3003 static UsingDirectiveDecl *CreateDeserialized(ASTContext &C, unsigned ID);
H A DDeclarationName.h42 class UsingDirectiveDecl; variable
H A DRecursiveASTVisitor.h1580 DEF_TRAVERSE_DECL(UsingDirectiveDecl, {
/freebsd-12.1/contrib/llvm/tools/clang/lib/Index/
H A DIndexSymbol.cpp65 if (isa<UsingDirectiveDecl>(D)) in isFunctionLocalSymbol()
H A DIndexDecl.cpp595 bool VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
H A DUSRGeneration.cpp110 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDebugInfo.h454 void EmitUsingDirective(const UsingDirectiveDecl &UD);
H A DCGDecl.cpp127 DI->EmitUsingDirective(cast<UsingDirectiveDecl>(D)); in EmitDecl()
/freebsd-12.1/contrib/llvm/tools/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp663 const internal::VariadicDynCastAllOfMatcher<Decl, UsingDirectiveDecl>
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DClangASTContext.h981 clang::UsingDirectiveDecl *
/freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp437 if (auto *U = dyn_cast<UsingDirectiveDecl>(D)) in getDeclValue()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp1995 clang::UsingDirectiveDecl *ClangASTContext::CreateUsingDirectiveDeclaration( in CreateUsingDirectiveDeclaration()
2000 clang::UsingDirectiveDecl *using_decl = clang::UsingDirectiveDecl::Create( in CreateUsingDirectiveDeclaration()
10031 if (clang::UsingDirectiveDecl *ud = in DeclContextFindDeclByName()
10032 llvm::dyn_cast<clang::UsingDirectiveDecl>(child)) { in DeclContextFindDeclByName()
10146 if (clang::UsingDirectiveDecl *ud = in CountDeclLevels()
10147 llvm::dyn_cast<clang::UsingDirectiveDecl>(child)) { in CountDeclLevels()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderDecl.cpp330 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
1612 void ASTDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
3686 D = UsingDirectiveDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp65 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
1237 void ASTDeclWriter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp2506 Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
2510 UsingDirectiveDecl *Inst in VisitUsingDirectiveDecl()
2511 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(), in VisitUsingDirectiveDecl()
H A DSemaLookup.cpp141 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in visit()
178 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in addUsingDirective()
H A DSemaDeclCXX.cpp8842 const ParsedAttributesView &AttrList, UsingDirectiveDecl *&UD) { in ActOnStartNamespaceDef()
8959 UD = UsingDirectiveDecl::Create(Context, Parent, in ActOnStartNamespaceDef()
9371 UsingDirectiveDecl *UDir = nullptr; in ActOnUsingDirective()
9420 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective()
9440 void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) { in PushUsingDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseDeclCXX.cpp214 UsingDirectiveDecl *ImplicitUsingDirectiveDecl = nullptr; in ParseNamespace()
260 UsingDirectiveDecl *ImplicitUsingDirectiveDecl = nullptr; in ParseInnerNamespace()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1573 extern const internal::VariadicDynCastAllOfMatcher<Decl, UsingDirectiveDecl>

12