Home
last modified time | relevance | path

Searched refs:lastWallClockTime (Results 1 – 4 of 4) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/data/
DTimer.kt44 val lastWallClockTime: Long, in <lambda>() constant in com.android.deskclock.data.Timer
125 return lastWallClockTime + lastRemainingTime in <lambda>()
212 val delta = max(0, wallClockTime - lastWallClockTime) in <lambda>()
248 lastWallClockTime, lastRemainingTime, label, deleteAfterUse) in <lambda>()
272 lastWallClockTime, remainingTime, label, deleteAfterUse) in <lambda>()
289 val lastWallClockTime: Long in <lambda>() constant
294 lastWallClockTime = Utils.wallClock() in <lambda>()
298 lastWallClockTime = this.lastWallClockTime in <lambda>()
302 lastWallClockTime, remainingTime, label, deleteAfterUse) in <lambda>()
DTimerDAO.kt77 val lastWallClockTime: Long = prefs.getLong(LAST_WALL_CLOCK_TIME + id, Timer.UNUSED) in getTimers() constant
82 lastWallClockTime, remainingTime, label, deleteAfterUse)) in getTimers()
110 editor.putLong(LAST_WALL_CLOCK_TIME + id, timer.lastWallClockTime) in addTimer()
119 timer.lastStartTime, timer.lastWallClockTime, timer.remainingTime, in addTimer()
136 editor.putLong(LAST_WALL_CLOCK_TIME + id, timer.lastWallClockTime) in updateTimer()
DStopwatchDAO.kt51 val lastWallClockTime: Long = prefs.getLong(LAST_WALL_CLOCK_TIME, Stopwatch.UNUSED) in getStopwatch() constant
53 var s = Stopwatch(state, lastStartTime, lastWallClockTime, accumulatedTime) in getStopwatch()
77 .putLong(LAST_WALL_CLOCK_TIME, stopwatch.lastWallClockTime) in setStopwatch()
DStopwatch.kt32 val lastWallClockTime: Long, constant in com.android.deskclock.data.Stopwatch
107 val delta = max(0, wallClockTime - lastWallClockTime) in reset()