Lines Matching refs:MatchKind
339 enum class MatchKind : uint8_t { kEq, kNe };
344 MatchKind match;
347 bool IsEq() const { return match == MatchKind::kEq; }
648 return {s, MatchKind::kEq};
654 return {s, MatchKind::kNe};
681 MatchKind exact_match = MatchKind::kNe;
693 exact_match = MatchKind::kEq;
707 return {mid, MatchKind::kEq};
710 return {s, MatchKind::kNe};
2514 if (res.match == MatchKind::kEq) {
2515 return {iter, MatchKind::kEq};
2522 return {iter, MatchKind::kNe};