Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/data/
DStopwatchDAO.kt92 var prevAccumulatedTime: Long = 0 in getLaps() variable
101 val lapTime = accumulatedTime - prevAccumulatedTime in getLaps()
107 prevAccumulatedTime = accumulatedTime in getLaps()
DStopwatchModel.kt138 val prevAccumulatedTime = if (laps.isEmpty()) 0 else laps[0].accumulatedTime in addLap() constant
139 val lapTime = totalTime - prevAccumulatedTime in addLap()