Lines Matching refs:Match
450 dfa::Result::Match(end) => Some(end),
464 dfa::Result::Match(_) => Some(text.len()),
472 dfa::Result::Match(e) => Some(e),
502 dfa::Result::Match(_) => true,
516 dfa::Result::Match(_) => true,
524 dfa::Result::Match(_) => true,
546 dfa::Result::Match((s, e)) => Some((s, e)),
555 dfa::Result::Match((s, e)) => Some((s, e)),
565 dfa::Result::Match((s, e)) => Some((s, e)),
634 dfa::Result::Match((s, e)) => self.captures_nfa_type(
651 dfa::Result::Match((s, e)) => self.captures_nfa_type(
665 dfa::Result::Match((s, e)) => self.captures_nfa_type(
749 Match(end) if start == end => return Match((start, start)),
750 Match(end) => end,
760 Match(s) => Match((start + s, end)),
787 Match(s) => Match((start + s, text.len())),
855 Match(0) | NoMatch(0) => return None,
856 Match(i) => return Some(Match((start + i, end))),
884 Some(Match((start, _))) => start,
903 Match(e) => Match((match_start, e)),
1176 dfa::Result::Match(_) => true,
1199 dfa::Result::Match(_) => true,
1488 /// Match literals anywhere in text.
1490 /// Match literals only at the start of text.
1492 /// Match literals only at the end of text.