Searched refs:lastWallClockTime (Results 1 – 8 of 8) sorted by relevance
/packages/apps/DeskClock/src/com/android/deskclock/data/ |
D | Timer.kt | 44 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>()
|
D | Timer.java | 109 long lastWallClockTime, long remainingTime, String label, boolean deleteAfterUse) { in Timer() argument 115 mLastStartWallClockTime = lastWallClockTime; in Timer() 344 final long lastWallClockTime; in setRemainingTime() local 349 lastWallClockTime = wallClock(); in setRemainingTime() 353 lastWallClockTime = mLastStartWallClockTime; in setRemainingTime() 357 lastWallClockTime, remainingTime, mLabel, mDeleteAfterUse); in setRemainingTime()
|
D | TimerDAO.kt | 77 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()
|
D | StopwatchDAO.kt | 51 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()
|
D | Stopwatch.kt | 32 val lastWallClockTime: Long, constant in com.android.deskclock.data.Stopwatch 107 val delta = max(0, wallClockTime - lastWallClockTime) in reset()
|
D | Stopwatch.java | 49 Stopwatch(State state, long lastStartTime, long lastWallClockTime, long accumulatedTime) { in Stopwatch() argument 52 mLastStartWallClockTime = lastWallClockTime; in Stopwatch()
|
D | StopwatchDAO.java | 62 final long lastWallClockTime = prefs.getLong(LAST_WALL_CLOCK_TIME, Stopwatch.UNUSED); in getStopwatch() local 64 Stopwatch s = new Stopwatch(state, lastStartTime, lastWallClockTime, accumulatedTime); in getStopwatch()
|
D | TimerDAO.java | 89 final long lastWallClockTime = prefs.getLong(LAST_WALL_CLOCK_TIME + id, in getTimers() local 95 lastWallClockTime, remainingTime, label, deleteAfterUse)); in getTimers()
|