Home
last modified time | relevance | path

Searched refs:UsingDecls (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/clang/lib/Tooling/Refactoring/Rename/
H A DUSRLocFinder.cpp345 UsingDecls.push_back(Using); in VisitUsingDecl()
463 return UsingDecls; in getUsingDecls()
515 std::vector<const UsingDecl *> UsingDecls; member in clang::tooling::__anon945a552f0111::RenameLocFinder
/llvm-project-15.0.7/clang-tools-extra/clang-change-namespace/
H A DChangeNamespace.h153 llvm::SmallPtrSet<const UsingDecl *, 8> UsingDecls; variable
H A DChangeNamespace.cpp527 UsingDecls.insert(Using); in run()
847 for (const UsingDecl *Using : UsingDecls) { in replaceQualifiedSymbolInDeclContext()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DDeclCXX.h3688 ArrayRef<NamedDecl *> UsingDecls) in UsingPackDecl() argument
3694 InstantiatedFrom(InstantiatedFrom), NumExpansions(UsingDecls.size()) { in UsingPackDecl()
3695 std::uninitialized_copy(UsingDecls.begin(), UsingDecls.end(), in UsingPackDecl()
3719 ArrayRef<NamedDecl *> UsingDecls);
/llvm-project-15.0.7/clang/unittests/Index/
H A DIndexTests.cpp290 TEST(IndexTest, UsingDecls) { in TEST() argument
/llvm-project-15.0.7/clang/lib/AST/
H A DDeclCXX.cpp3108 ArrayRef<NamedDecl *> UsingDecls) { in Create() argument
3109 size_t Extra = additionalSizeToAlloc<NamedDecl *>(UsingDecls.size()); in Create()
3110 return new (C, DC, Extra) UsingPackDecl(DC, InstantiatedFrom, UsingDecls); in Create()