Home
last modified time | relevance | path

Searched refs:mAccumulatedTime (Results 1 – 2 of 2) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/
DCircleTimerView.java27 private long mAccumulatedTime = 0; field in CircleTimerView
81 mAccumulatedTime = 0; in stopIntervalAnimation()
90 mAccumulatedTime += Utils.getTimeNow() - mIntervalStartTime; in pauseIntervalAnimation()
107 mCurrentIntervalTime = mAccumulatedTime = time; in setPassedTime()
165 mCurrentIntervalTime = Utils.getTimeNow() - mIntervalStartTime + mAccumulatedTime; in onDraw()
246 editor.putLong (key + PREF_CTV_ACCUM_TIME, mAccumulatedTime); in writeToSharedPref()
257 mAccumulatedTime = prefs.getLong(key + PREF_CTV_ACCUM_TIME, 0); in readFromSharedPref()
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DStopwatchFragment.java60 long mAccumulatedTime = 0; field in StopwatchFragment
238 mAccumulatedTime += (curTime - mStartTime); in rightButtonAction()
348 mTimeText.setTime(mAccumulatedTime, true, true); in onResume()
352 } else if (mState == Stopwatches.STOPWATCH_STOPPED && mAccumulatedTime != 0) { in onResume()
393 mTimeText.setTime(mAccumulatedTime, true, true); in doStop()
395 updateCurrentLap(mAccumulatedTime); in doStop()
421 mAccumulatedTime = 0; in doReset()
426 mTimeText.setTime(mAccumulatedTime, true, true); in doReset()
613 long curTime = time - mStartTime + mAccumulatedTime; in addLapTime()
667 long totalTime = mAccumulatedTime + (curTime - mStartTime);
[all …]