Searched refs:lastWallClockTime (Results 1 – 4 of 4) sorted by relevance
/packages/apps/DeskClock/src/com/android/deskclock/data/ |
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 | 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()
|