Lines Matching refs:include_fixer
27 using clang::include_fixer::IncludeFixerContext;
160 std::unique_ptr<include_fixer::SymbolIndexManager>
164 auto SymbolIndexMgr = std::make_unique<include_fixer::SymbolIndexManager>(); in createSymbolIndexManager()
188 return std::make_unique<include_fixer::InMemorySymbolIndex>(Symbols); in createSymbolIndexManager()
193 auto CreateYamlIdx = [=]() -> std::unique_ptr<include_fixer::SymbolIndex> { in createSymbolIndexManager()
194 llvm::ErrorOr<std::unique_ptr<include_fixer::YamlSymbolIndex>> DB( in createSymbolIndexManager()
197 DB = include_fixer::YamlSymbolIndex::createFromFile(Input); in createSymbolIndexManager()
204 DB = include_fixer::YamlSymbolIndex::createFromDirectory( in createSymbolIndexManager()
223 []() -> std::unique_ptr<include_fixer::SymbolIndex> { in createSymbolIndexManager()
224 auto DB = include_fixer::FuzzySymbolIndex::createFromYAML(Input); in createSymbolIndexManager()
332 auto Replacements = clang::include_fixer::createIncludeFixerReplacements( in includeFixerMain()
352 std::unique_ptr<include_fixer::SymbolIndexManager> SymbolIndexMgr = in includeFixerMain()
380 std::vector<include_fixer::IncludeFixerContext> Contexts; in includeFixerMain()
381 include_fixer::IncludeFixerActionFactory Factory(*SymbolIndexMgr, Contexts, in includeFixerMain()
419 auto Replacements = clang::include_fixer::createIncludeFixerReplacements( in includeFixerMain()