Searched refs:mAccumulatedTime (Results 1 – 2 of 2) sorted by relevance
27 private long mAccumulatedTime = 0; field in CircleTimerView81 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()
60 long mAccumulatedTime = 0; field in StopwatchFragment238 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 …]