Home
last modified time | relevance | path

Searched refs:STOPWATCH_RUNNING (Results 1 – 3 of 3) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DStopwatchFragment.java263 case Stopwatches.STOPWATCH_RUNNING: in toggleStopwatchState()
427 if (mState == Stopwatches.STOPWATCH_RUNNING) { in onResume()
445 if (mState == Stopwatches.STOPWATCH_RUNNING) { in onPause()
470 if (page == DeskClock.STOPWATCH_TAB_INDEX && mState == Stopwatches.STOPWATCH_RUNNING) { in onPageChanged()
497 mState = Stopwatches.STOPWATCH_RUNNING; in doStart()
721 if (mState == Stopwatches.STOPWATCH_RUNNING) { in writeToSharedPref()
760 } else if (mState == Stopwatches.STOPWATCH_RUNNING) { in readFromSharedPref()
813 case Stopwatches.STOPWATCH_RUNNING: in onLeftButtonClick()
845 if (mState == Stopwatches.STOPWATCH_RUNNING) { in setFabAppearance()
873 case Stopwatches.STOPWATCH_RUNNING: in setLeftRightButtonAppearance()
DStopwatchService.java364 } else if (state == Stopwatches.STOPWATCH_RUNNING) { in writeToSharedPrefs()
365 editor.putInt(Stopwatches.PREF_STATE, Stopwatches.STOPWATCH_RUNNING); in writeToSharedPrefs()
375 writeToSharedPrefs(startTime, null, null, Stopwatches.STOPWATCH_RUNNING, updateCircle); in writeSharedPrefsStarted()
DStopwatches.java52 public static final int STOPWATCH_RUNNING = 1; field in Stopwatches