Home
last modified time | relevance | path

Searched refs:getAccumulatedTime (Results 1 – 6 of 6) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/data/
DStopwatchModel.java149 final long prevAccumulatedTime = laps.isEmpty() ? 0 : laps.get(0).getAccumulatedTime(); in addLap()
199 final long currentLapTime = stopwatch.getTotalTime() - laps.get(0).getAccumulatedTime(); in getLongestLapTime()
216 final long currentLapTime = time - previousLap.getAccumulatedTime(); in getCurrentLapTime()
DLap.java41 public long getAccumulatedTime() { return mAccumulatedTime; } in getAccumulatedTime() method in Lap
DStopwatch.java81 public long getAccumulatedTime() { in getAccumulatedTime() method in Stopwatch
DStopwatchDAO.java89 .putLong(ACCUMULATED_TIME, stopwatch.getAccumulatedTime()); in setStopwatch()
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DStopwatchCircleView.java130 final long currentLapTime = stopwatch.getTotalTime() - priorLap.getAccumulatedTime(); in onDraw()
DLapsAdapter.java99 totalTime = lap.getAccumulatedTime(); in onBindViewHolder()