Home
last modified time | relevance | path

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

/external/rust/crates/regex-automata/src/
Ddfa.rs45 fn is_match_or_dead_state(&self, id: Self::ID) -> bool; in is_match_or_dead_state() method
216 if self.is_match_or_dead_state(state) { in is_match_at()
221 if self.is_match_or_dead_state(state) { in is_match_at()
241 if self.is_match_or_dead_state(state) { in shortest_match_at()
246 if self.is_match_or_dead_state(state) { in shortest_match_at()
279 if self.is_match_or_dead_state(state) { in find_at()
311 if self.is_match_or_dead_state(state) { in rfind_at()
336 fn is_match_or_dead_state(&self, id: Self::ID) -> bool { in is_match_or_dead_state() method
337 (**self).is_match_or_dead_state(id) in is_match_or_dead_state()
Dsparse.rs434 fn is_match_or_dead_state(&self, id: S) -> bool { in is_match_or_dead_state() method
435 self.repr().is_match_or_dead_state(id) in is_match_or_dead_state()
531 fn is_match_or_dead_state(&self, id: S) -> bool { in is_match_or_dead_state() method
532 self.0.is_match_or_dead_state(id) in is_match_or_dead_state()
592 fn is_match_or_dead_state(&self, id: S) -> bool { in is_match_or_dead_state() method
593 self.0.is_match_or_dead_state(id) in is_match_or_dead_state()
691 self.is_match_or_dead_state(id) && !self.is_dead_state(id) in is_match_state()
698 fn is_match_or_dead_state(&self, id: S) -> bool { in is_match_or_dead_state() method
Ddense.rs565 fn is_match_or_dead_state(&self, id: S) -> bool { in is_match_or_dead_state() method
566 self.repr().is_match_or_dead_state(id) in is_match_or_dead_state()
694 fn is_match_or_dead_state(&self, id: S) -> bool { in is_match_or_dead_state() method
695 self.0.is_match_or_dead_state(id) in is_match_or_dead_state()
754 fn is_match_or_dead_state(&self, id: S) -> bool { in is_match_or_dead_state() method
755 self.0.is_match_or_dead_state(id) in is_match_or_dead_state()
815 fn is_match_or_dead_state(&self, id: S) -> bool { in is_match_or_dead_state() method
816 self.0.is_match_or_dead_state(id) in is_match_or_dead_state()
868 fn is_match_or_dead_state(&self, id: S) -> bool { in is_match_or_dead_state() method
869 self.0.is_match_or_dead_state(id) in is_match_or_dead_state()
[all …]
/external/rust/crates/aho-corasick/src/
Ddfa.rs179 fn is_match_or_dead_state(&self, id: S) -> bool { in is_match_or_dead_state() method
180 self.repr().is_match_or_dead_state(id) in is_match_or_dead_state()
238 fn is_match_or_dead_state(&self, id: S) -> bool { in is_match_or_dead_state() method
239 self.repr().is_match_or_dead_state(id) in is_match_or_dead_state()
299 fn is_match_or_dead_state(&self, id: S) -> bool { in is_match_or_dead_state() method
300 self.repr().is_match_or_dead_state(id) in is_match_or_dead_state()
366 fn is_match_or_dead_state(&self, id: S) -> bool { in is_match_or_dead_state() method
367 self.repr().is_match_or_dead_state(id) in is_match_or_dead_state()
438 fn is_match_or_dead_state(&self, id: S) -> bool { in is_match_or_dead_state() method
Dautomaton.rs124 fn is_match_or_dead_state(&self, id: Self::ID) -> bool { in is_match_or_dead_state() method
248 if self.is_match_or_dead_state(*state_id) { in standard_find_at_imp()
328 if self.is_match_or_dead_state(*state_id) { in leftmost_find_at_imp()
443 if self.is_match_or_dead_state(state_id) { in leftmost_find_at_no_state_imp()