Searched refs:ScoredSymbols (Results 1 – 1 of 1) sorted by relevance
101 std::vector<std::pair<float, const Symbol *>> ScoredSymbols(Symbols.size()); in buildIndex() local106 ScoredSymbols[I] = {quality(*Sym), Sym}; in buildIndex()111 llvm::sort(ScoredSymbols, std::greater<std::pair<float, const Symbol *>>()); in buildIndex()116 for (size_t I = 0; I < ScoredSymbols.size(); ++I) { in buildIndex()117 SymbolQuality[I] = ScoredSymbols[I].first; in buildIndex()118 Symbols[I] = ScoredSymbols[I].second; in buildIndex()