Searched refs:shortest_match_at (Results 1 – 5 of 5) sorted by relevance
/third_party/rust/crates/regex/src/ |
D | re_unicode.rs | 615 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()
|
D | re_bytes.rs | 557 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()
|
D | re_trait.rs | 125 fn shortest_match_at( in shortest_match_at() method
|
D | exec.rs | 396 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/ |
D | rure.rs | 215 match re.shortest_match_at(haystack, start) {
|