Home
last modified time | relevance | path

Searched refs:is_match_state (Results 1 – 9 of 9) sorted by relevance

/external/rust/crates/regex-automata/src/
Ddfa.rs30 fn is_match_state(&self, id: Self::ID) -> bool; in is_match_state() method
217 return self.is_match_state(state); in is_match_at()
222 return self.is_match_state(state); in is_match_at()
272 } else if self.is_match_state(state) { in find_at()
304 } else if self.is_match_state(state) { in rfind_at()
331 fn is_match_state(&self, id: Self::ID) -> bool { in is_match_state() method
332 (**self).is_match_state(id) in is_match_state()
Dcodegen.rs29 if dfa.is_match_state(dfa.start()) { in is_match_forward()
41 if dfa.is_match_state(id) { in is_match_forward()
48 if dfa.is_match_state(next_id) { in is_match_forward()
80 if dfa.is_match_state(id) { in state_enum_def()
98 if dfa.is_match_state(id) { in state_variant_names()
Dsparse.rs424 fn is_match_state(&self, id: S) -> bool { in is_match_state() method
425 self.repr().is_match_state(id) in is_match_state()
521 fn is_match_state(&self, id: S) -> bool { in is_match_state() method
522 self.0.is_match_state(id) in is_match_state()
582 fn is_match_state(&self, id: S) -> bool { in is_match_state() method
583 self.0.is_match_state(id) in is_match_state()
690 fn is_match_state(&self, id: S) -> bool { in is_match_state() method
1018 if dfa.is_match_state(id) { in fmt()
1024 if dfa.is_match_state(id) { in fmt()
1030 if dfa.is_match_state(id) { in fmt()
Ddense.rs555 fn is_match_state(&self, id: S) -> bool { in is_match_state() method
556 self.repr().is_match_state(id) in is_match_state()
684 fn is_match_state(&self, id: S) -> bool { in is_match_state() method
685 self.0.is_match_state(id) in is_match_state()
744 fn is_match_state(&self, id: S) -> bool { in is_match_state() method
745 self.0.is_match_state(id) in is_match_state()
805 fn is_match_state(&self, id: S) -> bool { in is_match_state() method
806 self.0.is_match_state(id) in is_match_state()
858 fn is_match_state(&self, id: S) -> bool { in is_match_state() method
859 self.0.is_match_state(id) in is_match_state()
[all …]
Dtransducer.rs17 self.is_match_state(*state)
Dminimize.rs226 if dfa.is_match_state(id) { in initial_partitions()
/external/rust/crates/aho-corasick/src/
Ddfa.rs175 fn is_match_state(&self, id: S) -> bool { in is_match_state() method
176 self.repr().is_match_state(id) in is_match_state()
234 fn is_match_state(&self, id: S) -> bool { in is_match_state() method
235 self.repr().is_match_state(id) in is_match_state()
295 fn is_match_state(&self, id: S) -> bool { in is_match_state() method
296 self.repr().is_match_state(id) in is_match_state()
362 fn is_match_state(&self, id: S) -> bool { in is_match_state() method
363 self.repr().is_match_state(id) in is_match_state()
432 fn is_match_state(&self, id: S) -> bool { in is_match_state() method
Dautomaton.rs113 fn is_match_state(&self, id: Self::ID) -> bool; in is_match_state() method
125 id == dead_id() || self.is_match_state(id) in is_match_or_dead_state()
Dnfa.rs240 fn is_match_state(&self, id: S) -> bool { in is_match_state() method