Lines Matching refs:State

39  * <p>A state is a <code>State</code> object and must implement
87 * <p>In addition to <code>processMessage</code> each <code>State</code> has
149 class State1 extends State {
266 class P1 extends State {
293 class S1 extends State {
313 class S2 extends State {
341 class P2 extends State {
453 private State mState;
454 private State mOrgState;
464 LogRec(Message msg, String info, State state, State orgState) {
474 public void update(Message msg, String info, State state, State orgState) {
506 public State getState() {
513 public State getOriginalState() {
632 synchronized void add(Message msg, String messageInfo, State state, State orgState) {
677 /** State used when state machine is halted */
680 /** State used when state machine is quitting */
692 State state;
712 private HashMap<State, StateInfo> mStateInfo =
713 new HashMap<State, StateInfo>();
716 private State mInitialState;
719 private State mDestState;
725 * State entered when transitionToHaltingState is called.
727 private class HaltingState extends State {
736 * State entered when a valid quit message is handled.
738 private class QuittingState extends State {
784 State destState = null;
927 State orgState = mStateStack[mStateStackTopIndex].state;
944 State curState = mStateStack[mStateStackTopIndex].state;
1019 private final StateInfo setupTempStateStackWithStatesToEnter(State destState) {
1084 private final StateInfo addState(State state, State parent) {
1129 /** @see StateMachine#setInitialState(State) */
1130 private final void setInitialState(State initialState) {
1137 mDestState = (State) destState;
1222 protected final void addState(State state, State parent) {
1244 protected final void addState(State state) {
1254 protected final void setInitialState(State initialState) {
1385 protected void addLogRec(String string, State state) {