Searched refs:is_match_at (Results 1 – 6 of 6) sorted by relevance
/third_party/rust/crates/regex/src/ |
D | re_set.rs | 169 self.is_match_at(text, 0) 179 pub fn is_match_at(&self, text: $text_ty, start: usize) -> bool { 180 self.0.searcher().is_match_at($as_bytes(text), start)
|
D | re_unicode.rs | 198 self.is_match_at(text, 0) in is_match() 638 pub fn is_match_at(&self, text: &str, start: usize) -> bool { in is_match_at() method 639 self.0.searcher_str().is_match_at(text, start) in is_match_at()
|
D | re_bytes.rs | 143 self.is_match_at(text, 0) in is_match() 580 pub fn is_match_at(&self, text: &[u8], start: usize) -> bool { in is_match_at() method 581 self.0.searcher().is_match_at(text, start) in is_match_at()
|
D | re_trait.rs | 132 fn is_match_at(&self, text: &Self::Text, start: usize) -> bool; in is_match_at() method
|
D | exec.rs | 401 fn is_match_at(&self, text: &str, start: usize) -> bool { in is_match_at() method 402 self.0.is_match_at(text.as_bytes(), start) in is_match_at() 487 fn is_match_at(&self, text: &[u8], start: usize) -> bool { in is_match_at() method
|
/third_party/rust/crates/regex/regex-capi/src/ |
D | rure.rs | 167 re.is_match_at(haystack, start) 543 re.is_match_at(haystack, start)
|