Lines Matching refs:MatchKind
378 enum class MatchKind : uint8_t { kEq, kNe };
383 MatchKind match;
386 bool IsEq() const { return match == MatchKind::kEq; }
687 return {s, MatchKind::kEq};
693 return {s, MatchKind::kNe};
720 MatchKind exact_match = MatchKind::kNe;
732 exact_match = MatchKind::kEq;
746 return {mid, MatchKind::kEq};
749 return {s, MatchKind::kNe};
2536 if (res.match == MatchKind::kEq) {
2537 return {iter, MatchKind::kEq};
2544 return {iter, MatchKind::kNe};