Lines Matching refs:InternalState
41 protected final Map<InternalState, ExternalState> intToExtStateTable;
42 protected final InternalState initialState;
43 protected InternalState currentState;
48 Map<InternalState, ExternalState> intToExtStateTable, in GenericParser() argument
49 InternalState initialState) { in GenericParser()
108 InternalState nextState = in parse()
111 if (nextState == InternalState.INTERNAL_ERROR_STATE) { in parse()
117 currentState = InternalState.INTERNAL_ERROR_STATE; in parse()
192 InternalState getCurrentInternalState() { in getCurrentInternalState()
196 protected void setNextState(InternalState nextState) throws ParseException { in setNextState()
225 protected InternalState handleEnterState(InternalState currentState, in handleEnterState()
226 InternalState expectedNextState, in handleEnterState()
242 protected InternalState handleExitState(InternalState currentState, in handleExitState()
243 InternalState expectedNextState, in handleExitState()
257 protected InternalState handleInState(InternalState currentState, in handleInState()