Home
last modified time | relevance | path

Searched refs:is_match_at (Results 1 – 6 of 6) sorted by relevance

/third_party/rust/crates/regex/src/
Dre_set.rs169 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)
Dre_unicode.rs198 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()
Dre_bytes.rs143 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()
Dre_trait.rs132 fn is_match_at(&self, text: &Self::Text, start: usize) -> bool; in is_match_at() method
Dexec.rs401 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/
Drure.rs167 re.is_match_at(haystack, start)
543 re.is_match_at(haystack, start)