Home
last modified time | relevance | path

Searched refs:DFARepr (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/regex-automata/src/
Ddeterminize.rs11 type DFARepr<S> = dense::Repr<Vec<S>, S>; typedef
31 dfa: DFARepr<S>,
70 dfa: DFARepr::empty().anchored(nfa.is_anchored()), in new()
83 self.dfa = DFARepr::empty_with_byte_classes(byte_classes) in with_byte_classes()
99 pub fn build(mut self) -> Result<DFARepr<S>> { in build()
Dminimize.rs9 type DFARepr<S> = dense::Repr<Vec<S>, S>; typedef
43 dfa: &'a mut DFARepr<S>,
76 pub fn new(dfa: &'a mut DFARepr<S>) -> Minimizer<'a, S> { in new()
222 fn initial_partitions(dfa: &DFARepr<S>) -> Vec<StateSet<S>> { in initial_partitions()
241 fn incoming_transitions(dfa: &DFARepr<S>) -> Vec<Vec<Vec<S>>> { in incoming_transitions()