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

References

tools/clang/tools/extra/clangd/FuzzyMatch.cpp
   86       for (Action A : {Miss, Match})
  251 bool FuzzyMatcher::allowMatch(int P, int W, Action Last) const {
  269 int FuzzyMatcher::skipPenalty(int W, Action Last) const {
  280 int FuzzyMatcher::matchBonus(int P, int W, Action Last) const {
  333   Action Last =
  338   Action A[MaxWord];
  384     for (Action A : {Miss, Match}) {
tools/clang/tools/extra/clangd/FuzzyMatch.h
   98   constexpr static Action Miss = false; // Word character was skipped.
   99   constexpr static Action Match = true; // Matched against a pattern character.
  103   bool allowMatch(int P, int W, Action Last) const;
  104   int skipPenalty(int W, Action Last) const;
  105   int matchBonus(int P, int W, Action Last) const;
  128     Action Prev : 1;