HomeSort by relevance Sort by last modified time
    Searched refs:mAccumulatedTime (Results 1 - 2 of 2) sorted by null

  /packages/apps/DeskClock/src/com/android/deskclock/
CircleTimerView.java 27 private long mAccumulatedTime = 0;
81 mAccumulatedTime = 0;
90 mAccumulatedTime += Utils.getTimeNow() - mIntervalStartTime;
107 mCurrentIntervalTime = mAccumulatedTime = time;
165 mCurrentIntervalTime = Utils.getTimeNow() - mIntervalStartTime + mAccumulatedTime;
246 editor.putLong (key + PREF_CTV_ACCUM_TIME, mAccumulatedTime);
257 mAccumulatedTime = prefs.getLong(key + PREF_CTV_ACCUM_TIME, 0);
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchFragment.java 60 long mAccumulatedTime = 0;
238 mAccumulatedTime += (curTime - mStartTime);
348 mTimeText.setTime(mAccumulatedTime, true, true);
352 } else if (mState == Stopwatches.STOPWATCH_STOPPED && mAccumulatedTime != 0) {
406 mTimeText.setTime(mAccumulatedTime, true, true);
408 updateCurrentLap(mAccumulatedTime);
434 mAccumulatedTime = 0;
439 mTimeText.setTime(mAccumulatedTime, true, true);
626 long curTime = time - mStartTime + mAccumulatedTime;
680 long totalTime = mAccumulatedTime + (curTime - mStartTime)
    [all...]

Completed in 383 milliseconds