Home | History | Annotate | Download | only in impl

Lines Matching refs:currentState

43   protected InternalState currentState;
53 this.currentState = initialState;
69 currentState = aGenericParser.currentState;
109 parserStateTable.getNextState(currentState, input);
116 currentState.getName(), getState().getName());
117 currentState = InternalState.INTERNAL_ERROR_STATE;
121 if (currentState != nextState) {
122 nextState = handleExitState(currentState, nextState, input);
124 if (currentState != nextState) {
128 currentState = nextState;
143 if (!intToExtStateTable.containsKey(currentState)) {
145 "For internal state: " + currentState);
147 return intToExtStateTable.get(currentState);
155 currentState = initialState;
193 return currentState;
205 if (currentState != nextState) {
206 nextState = handleExitState(currentState, nextState, nullChar);
208 if (currentState != nextState) {
211 currentState = nextState;
217 * @param currentState the current state of the parser
225 protected InternalState handleEnterState(InternalState currentState,
234 * @param currentState the current state of the parser
242 protected InternalState handleExitState(InternalState currentState,
251 * @param currentState the current state of the parser
257 protected InternalState handleInState(InternalState currentState,
259 return currentState;