Searched defs:State (Results 1 - 3 of 3) sorted by relevance

/development/tools/idegen/src/com/android/idegen/
H A DMakeFileParser.java44 private enum State { enum in class:MakeFileParser
96 private State state = State.NEW;
102 state = State.NEW;
202 state = State.CONTINUE;
205 state = State.NEW;
/development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
H A DMusicService.java84 enum State { enum in class:MusicService
94 State mState = State.Retrieving;
109 // why did we pause? (only relevant if mState == State.Paused)
227 if (mState == State.Paused || mState == State.Stopped) {
235 if (mState == State.Retrieving) {
247 if (mState == State.Stopped) {
251 else if (mState == State.Paused) {
253 mState = State
[all...]
/development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
H A DGameView.java47 public enum State { enum in class:GameView
56 private State(int value) { method in class:GameView.State
64 public static State fromInt(int i) {
65 for (State s : values()) {
94 /** Contains one of {@link State#EMPTY}, {@link State#PLAYER1} or {@link State#PLAYER2}. */
95 private final State[] mData = new State[9];
98 private State mSelectedValu
[all...]

Completed in 211 milliseconds