reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/tools/extra/clangd/FuzzyMatch.cpp
  223     for (int W = P; W < WordN; ++W) {
  223     for (int W = P; W < WordN; ++W) {
  224       auto &Score = Scores[P + 1][W + 1], &PreMiss = Scores[P + 1][W];
  224       auto &Score = Scores[P + 1][W + 1], &PreMiss = Scores[P + 1][W];
  229         MatchMissScore -= skipPenalty(W, Match);
  230         MissMissScore -= skipPenalty(W, Miss);
  236       auto &PreMatch = Scores[P][W];
  238           allowMatch(P, W, Match)
  239               ? PreMatch[Match].Score + matchBonus(P, W, Match)
  241       auto MissMatchScore = allowMatch(P, W, Miss)
  242                                 ? PreMatch[Miss].Score + matchBonus(P, W, Miss)