Home
last modified time | relevance | path

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

/external/rust/crates/csv-core/src/
Dreader.rs98 dfa: Dfa,
134 dfa: Dfa::new(), in default()
1101 struct Dfa { struct
1130 impl Dfa { impl
1131 fn new() -> Dfa { in new()
1132 Dfa { in new()
1296 impl fmt::Debug for Dfa { implementation
1312 impl Clone for Dfa { implementation
1313 fn clone(&self) -> Dfa { in clone() argument
1314 let mut dfa = Dfa::new(); in clone()
/external/rust/crates/regex/src/
Dexec.rs451 MatchType::Dfa | MatchType::DfaMany => { in shortest_match_at()
503 MatchType::Dfa | MatchType::DfaMany => { in is_match_at()
548 MatchType::Dfa => match self.find_dfa_forward(text, start) { in find_at()
632 MatchType::Dfa => { in captures_read_at()
1171 Dfa | DfaAnchoredReverse | DfaMany => { in many_matches_at()
1427 Some(MatchType::Dfa) in choose_dfa_match_type()
1472 Dfa, enumerator