Home
last modified time | relevance | path

Searched refs:shortest_match_at (Results 1 – 5 of 5) sorted by relevance

/third_party/rust/crates/regex/src/
Dre_unicode.rs615 self.shortest_match_at(text, 0) in shortest_match()
624 pub fn shortest_match_at( in shortest_match_at() method
629 self.0.searcher_str().shortest_match_at(text, start) in shortest_match_at()
Dre_bytes.rs557 self.shortest_match_at(text, 0) in shortest_match()
566 pub fn shortest_match_at( in shortest_match_at() method
571 self.0.searcher().shortest_match_at(text, start) in shortest_match_at()
Dre_trait.rs125 fn shortest_match_at( in shortest_match_at() method
Dexec.rs396 fn shortest_match_at(&self, text: &str, start: usize) -> Option<usize> { in shortest_match_at() method
397 self.0.shortest_match_at(text.as_bytes(), start) in shortest_match_at()
438 fn shortest_match_at(&self, text: &[u8], start: usize) -> Option<usize> { in shortest_match_at() method
/third_party/rust/crates/regex/regex-capi/src/
Drure.rs215 match re.shortest_match_at(haystack, start) {