Home | History | Annotate | Download | only in impl

Lines Matching defs:nextState

108     InternalState nextState =
111 if (nextState == InternalState.INTERNAL_ERROR_STATE) {
121 if (currentState != nextState) {
122 nextState = handleExitState(currentState, nextState, input);
124 if (currentState != nextState) {
125 nextState = handleEnterState(nextState, nextState, input);
127 nextState = handleInState(nextState, input);
128 currentState = nextState;
196 protected void setNextState(InternalState nextState) throws ParseException {
197 Preconditions.checkNotNull(nextState); // Developer error if it triggers.
205 if (currentState != nextState) {
206 nextState = handleExitState(currentState, nextState, nullChar);
208 if (currentState != nextState) {
209 handleEnterState(nextState, nextState, nullChar);
211 currentState = nextState;