Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDScope.h31 class UsingDirectiveDecl; variable
189 typedef SmallVector<UsingDirectiveDecl *, 2> UsingDirectivesTy;
439 void PushUsingDirective(UsingDirectiveDecl *UDir) { in PushUsingDirective()
HDSema.h4063 void PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir);
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDDeclCXX.cpp1971 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()
HDDeclBase.cpp1253 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()
HDDeclPrinter.cpp74 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
763 void DeclPrinter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
HDASTDumper.cpp430 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D);
1204 void ASTDumper::VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
HDDecl.cpp1550 if (auto *UD = dyn_cast<UsingDirectiveDecl>(this)) in declarationReplaces()
1552 cast<UsingDirectiveDecl>(OldD)->getNominatedNamespace() in declarationReplaces()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDDeclCXX.h2559 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);
HDDeclBase.h56 class UsingDirectiveDecl; variable
1677 UsingDirectiveDecl *> udir_iterator_base;
1680 UsingDirectiveDecl *operator*() const;
HDDeclarationName.h36 class UsingDirectiveDecl; variable
HDDataRecursiveASTVisitor.h1380 DEF_TRAVERSE_DECL(UsingDirectiveDecl, {
HDRecursiveASTVisitor.h1454 DEF_TRAVERSE_DECL(UsingDirectiveDecl, {
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGDebugInfo.h324 void EmitUsingDirective(const UsingDirectiveDecl &UD);
HDCGDecl.cpp107 DI->EmitUsingDirective(cast<UsingDirectiveDecl>(D)); in EmitDecl()
HDCodeGenModule.cpp3290 DI->EmitUsingDirective(cast<UsingDirectiveDecl>(*D)); in EmitTopLevelDecl()
HDCGDebugInfo.cpp3234 void CGDebugInfo::EmitUsingDirective(const UsingDirectiveDecl &UD) { in EmitUsingDirective()
/NextBSD/contrib/llvm/tools/clang/lib/Index/
HDUSRGeneration.cpp96 void VisitUsingDirectiveDecl(const UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
/NextBSD/contrib/llvm/tools/lldb/source/Symbol/
HDClangASTContext.cpp1724 UsingDirectiveDecl* using_directive_decl = UsingDirectiveDecl::Create (*ast, in GetUniqueNamespaceDeclaration()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaTemplateInstantiateDecl.cpp2231 Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
2235 UsingDirectiveDecl *Inst in VisitUsingDirectiveDecl()
2236 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(), in VisitUsingDirectiveDecl()
HDSemaLookup.cpp143 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in visit()
180 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in addUsingDirective()
HDSemaDeclCXX.cpp7296 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/
HDASTWriterDecl.cpp56 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
1055 void ASTDeclWriter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { in VisitUsingDirectiveDecl()
HDASTReaderDecl.cpp269 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/
HDASTMatchers.h951 const internal::VariadicDynCastAllOfMatcher<Decl, UsingDirectiveDecl>