Home | History | Annotate | Download | only in data

Lines Matching refs:RESET

31 import static com.android.deskclock.data.Timer.State.RESET;
40 RUNNING(1), PAUSED(2), EXPIRED(3), RESET(4);
98 /** A flag indicating the timer should be deleted when it is reset. */
119 public boolean isReset() { return mState == RESET; }
171 * @return a copy of this timer that is paused or reset
174 if (mState == PAUSED || mState == RESET) {
177 return reset();
186 * @return a copy of this timer that is expired or reset
189 if (mState == EXPIRED || mState == RESET) {
198 * @return a copy of this timer that is reset
200 Timer reset() {
201 if (mState == RESET) {
205 return new Timer(mId, RESET, mLength, mLength, Long.MIN_VALUE, mLength, mLabel,
288 * <li>{@link State#RESET RESET} timers; ties broken by {@link #getLength()}</li>
293 private final List<State> stateExpiryOrder = Arrays.asList(EXPIRED, RUNNING, PAUSED, RESET);
303 if (state == RESET) {