Searched refs:lastStartTime (Results 1 – 4 of 4) sorted by relevance
/packages/apps/DeskClock/src/com/android/deskclock/data/ |
D | Timer.java | 101 Timer(int id, State state, long length, long totalLength, long lastStartTime, in Timer() argument 107 mLastStartTime = lastStartTime; in Timer() 226 final long lastStartTime; in addMinute() local 232 lastStartTime = now(); in addMinute() 237 lastStartTime = mLastStartTime; in addMinute() 247 return new Timer(mId, state, mLength, totalLength, lastStartTime, remainingTime, mLabel, in addMinute()
|
D | Stopwatch.java | 44 Stopwatch(State state, long lastStartTime, long accumulatedTime) { in Stopwatch() argument 46 mLastStartTime = lastStartTime; in Stopwatch()
|
D | StopwatchDAO.java | 65 final long lastStartTime = prefs.getLong(LAST_START_TIME, Long.MIN_VALUE); in getStopwatch() local 67 return new Stopwatch(state, lastStartTime, accumulatedTime); in getStopwatch()
|
D | TimerDAO.java | 93 final long lastStartTime = prefs.getLong(LAST_START_TIME + id, Long.MIN_VALUE); in getTimers() local 97 timers.add(new Timer(id, state, length, totalLength, lastStartTime, remainingTime, in getTimers()
|