Home
last modified time | relevance | path

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

/external/llvm-project/clang-tools-extra/clang-include-fixer/
DIncludeFixer.cpp161 std::vector<find_all_symbols::SymbolInfo> MatchedSymbols = in MaybeDiagnoseMissingCompleteType() local
164 if (!MatchedSymbols.empty() && GenerateDiagnostics) { in MaybeDiagnoseMissingCompleteType()
174 MatchedSymbols), in MaybeDiagnoseMissingCompleteType()
281 std::vector<find_all_symbols::SymbolInfo> MatchedSymbols = in CorrectTypo() local
284 if (!MatchedSymbols.empty() && GenerateDiagnostics) { in CorrectTypo()
293 MatchedSymbols), in CorrectTypo()
327 ArrayRef<find_all_symbols::SymbolInfo> MatchedSymbols) const { in getIncludeFixerContext()
329 for (const auto &Symbol : MatchedSymbols) { in getIncludeFixerContext()
390 std::vector<find_all_symbols::SymbolInfo> MatchedSymbols = in query() local
392 if (MatchedSymbols.empty()) in query()
[all …]
DSymbolIndexManager.cpp91 std::vector<SymbolAndSignals> MatchedSymbols; in search() local
142 MatchedSymbols.push_back(std::move(SymAndSig)); in search()
147 } while (MatchedSymbols.empty() && !Names.empty() && IsNestedSearch); in search()
149 rank(MatchedSymbols, FileName); in search()
152 for (auto &SymAndSig : MatchedSymbols) in search()
DIncludeFixer.h122 ArrayRef<find_all_symbols::SymbolInfo> MatchedSymbols) const;
126 return MatchedSymbols; in getMatchedSymbols()
145 std::vector<find_all_symbols::SymbolInfo> MatchedSymbols; variable
DIncludeFixerContext.cpp81 MatchedSymbols(std::move(Symbols)) { in IncludeFixerContext()
98 for (const auto &Symbol : MatchedSymbols) { in IncludeFixerContext()
DIncludeFixerContext.h85 std::vector<find_all_symbols::SymbolInfo> MatchedSymbols;
/external/llvm-project/clang-tools-extra/clang-include-fixer/tool/
DClangIncludeFixer.cpp359 auto MatchedSymbols = SymbolIndexMgr->search( in includeFixerMain() local
361 for (auto &Symbol : MatchedSymbols) { in includeFixerMain()
374 IncludeFixerContext(SourceFilePath, {Symbol}, MatchedSymbols); in includeFixerMain()