Home
last modified time | relevance | path

Searched defs:DfaState (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/csv-core/src/
Dreader.rs752 fn transition_final_dfa(&self, state: DfaState) -> DfaState { in transition_final_dfa()
1143 fn new_state(&self, nfa_state: NfaState) -> DfaState { in new_state()
1149 fn new_state_final_end(&self) -> DfaState { in new_state_final_end()
1153 fn new_state_final_record(&self) -> DfaState { in new_state_final_record()
1157 fn get_output(&self, state: DfaState, c: u8) -> (DfaState, bool) { in get_output()
1163 fn set(&mut self, from: DfaState, c: u8, to: DfaState, output: bool) { in set()
1179 state: DfaState, in new_read_field_result()
1202 state: DfaState, in new_read_record_result()
1284 struct DfaState(u8); struct
1286 impl DfaState { impl