Home
last modified time | relevance | path

Searched refs:SymbolIndexMgr (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/clang-tools-extra/clang-include-fixer/plugin/
DIncludeFixerPlugin.cpp28 : SymbolIndexMgr(std::move(SIM)) {} in ASTConsumerManagerWrapper()
29 std::shared_ptr<SymbolIndexManager> SymbolIndexMgr; member
34 : SymbolIndexMgr(std::make_shared<SymbolIndexManager>()), in ClangIncludeFixerPluginAction()
35 SemaSource(new IncludeFixerSemaSource(*SymbolIndexMgr, in ClangIncludeFixerPluginAction()
44 return std::make_unique<ASTConsumerManagerWrapper>(SymbolIndexMgr); in CreateASTConsumer()
83 SymbolIndexMgr->addSymbolIndex(std::move(CreateYamlIdx)); in ParseArgs()
88 std::shared_ptr<SymbolIndexManager> SymbolIndexMgr; member in clang::include_fixer::ClangIncludeFixerPluginAction
/external/llvm-project/clang-tools-extra/clang-include-fixer/
DIncludeFixer.h36 IncludeFixerActionFactory(SymbolIndexManager &SymbolIndexMgr,
51 SymbolIndexManager &SymbolIndexMgr;
87 explicit IncludeFixerSemaSource(SymbolIndexManager &SymbolIndexMgr, in IncludeFixerSemaSource() argument
90 : SymbolIndexMgr(SymbolIndexMgr), in IncludeFixerSemaSource()
137 SymbolIndexManager &SymbolIndexMgr; variable
DIncludeFixer.cpp29 explicit Action(SymbolIndexManager &SymbolIndexMgr, bool MinimizeIncludePaths) in Action() argument
30 : SemaSource(SymbolIndexMgr, MinimizeIncludePaths, in Action()
75 SymbolIndexManager &SymbolIndexMgr, in IncludeFixerActionFactory() argument
78 : SymbolIndexMgr(SymbolIndexMgr), Contexts(Contexts), in IncludeFixerActionFactory()
107 std::make_unique<Action>(SymbolIndexMgr, MinimizeIncludePaths); in runInvocation()
391 SymbolIndexMgr.search(QueryString, /*IsNestedSearch=*/false, FileName); in query()
394 SymbolIndexMgr.search(Query, /*IsNestedSearch=*/true, FileName); in query()
/external/llvm-project/clang-tools-extra/clang-include-fixer/tool/
DClangIncludeFixer.cpp164 auto SymbolIndexMgr = std::make_unique<include_fixer::SymbolIndexManager>(); in createSymbolIndexManager() local
187 SymbolIndexMgr->addSymbolIndex([=]() { in createSymbolIndexManager()
216 SymbolIndexMgr->addSymbolIndex(std::move(CreateYamlIdx)); in createSymbolIndexManager()
222 SymbolIndexMgr->addSymbolIndex( in createSymbolIndexManager()
235 return SymbolIndexMgr; in createSymbolIndexManager()
352 std::unique_ptr<include_fixer::SymbolIndexManager> SymbolIndexMgr = in includeFixerMain() local
354 if (!SymbolIndexMgr) in includeFixerMain()
359 auto MatchedSymbols = SymbolIndexMgr->search( in includeFixerMain()
381 include_fixer::IncludeFixerActionFactory Factory(*SymbolIndexMgr, Contexts, in includeFixerMain()
/external/llvm-project/clang-tools-extra/unittests/clang-include-fixer/
DIncludeFixerTest.cpp96 auto SymbolIndexMgr = std::make_unique<SymbolIndexManager>(); in runIncludeFixer() local
97 SymbolIndexMgr->addSymbolIndex( in runIncludeFixer()
101 IncludeFixerActionFactory Factory(*SymbolIndexMgr, FixerContexts, "llvm"); in runIncludeFixer()