Home
last modified time | relevance | path

Searched refs:is_dead_state (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/regex-automata/src/
Ddfa.rs35 fn is_dead_state(&self, id: Self::ID) -> bool; in is_dead_state() method
242 return if self.is_dead_state(state) { None } else { Some(start) }; in shortest_match_at()
247 return if self.is_dead_state(state) { in shortest_match_at()
270 let mut last_match = if self.is_dead_state(state) { in find_at()
280 if self.is_dead_state(state) { in find_at()
302 let mut last_match = if self.is_dead_state(state) { in rfind_at()
312 if self.is_dead_state(state) { in rfind_at()
341 fn is_dead_state(&self, id: Self::ID) -> bool { in is_dead_state() method
342 (**self).is_dead_state(id) in is_dead_state()
Dsparse.rs429 fn is_dead_state(&self, id: S) -> bool { in is_dead_state() method
430 self.repr().is_dead_state(id) in is_dead_state()
526 fn is_dead_state(&self, id: S) -> bool { in is_dead_state() method
527 self.0.is_dead_state(id) in is_dead_state()
587 fn is_dead_state(&self, id: S) -> bool { in is_dead_state() method
588 self.0.is_dead_state(id) in is_dead_state()
691 self.is_match_or_dead_state(id) && !self.is_dead_state(id) in is_match_state()
694 fn is_dead_state(&self, id: S) -> bool { in is_dead_state() method
Ddense.rs560 fn is_dead_state(&self, id: S) -> bool { in is_dead_state() method
561 self.repr().is_dead_state(id) in is_dead_state()
689 fn is_dead_state(&self, id: S) -> bool { in is_dead_state() method
690 self.0.is_dead_state(id) in is_dead_state()
749 fn is_dead_state(&self, id: S) -> bool { in is_dead_state() method
750 self.0.is_dead_state(id) in is_dead_state()
810 fn is_dead_state(&self, id: S) -> bool { in is_dead_state() method
811 self.0.is_dead_state(id) in is_dead_state()
863 fn is_dead_state(&self, id: S) -> bool { in is_dead_state() method
864 self.0.is_dead_state(id) in is_dead_state()
[all …]
Dtransducer.rs27 !self.is_dead_state(*state)