Home
last modified time | relevance | path

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

/external/rust/crates/csv-core/src/
Dreader.rs100 dfa_state: DfaState,
135 dfa_state: DfaState::start(), in default()
752 fn transition_final_dfa(&self, state: DfaState) -> DfaState { in transition_final_dfa() argument
1108 trans: [DfaState; TRANS_SIZE],
1119 in_field: DfaState,
1121 in_quoted: DfaState,
1124 final_field: DfaState,
1127 final_record: DfaState,
1133 trans: [DfaState(0); TRANS_SIZE], in new()
1136 in_field: DfaState(0), in new()
[all …]
/external/llvm-project/llvm/utils/TableGen/
DDFAEmitter.h67 using DfaState = SmallVector<state_type, 4>; variable
91 UniqueVector<DfaState> DfaStates;
102 void visitDfaState(const DfaState &DS);
DDFAEmitter.cpp56 void DfaEmitter::visitDfaState(const DfaState &DS) { in visitDfaState()
60 DfaState NewStates; in visitDfaState()
88 DfaState Initial(1, /*NFA initial state=*/0); in constructDfa()
94 DfaState S = DfaStates[DfaStateId]; in constructDfa()