Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/data/
DTimer.java101 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()
DStopwatch.java44 Stopwatch(State state, long lastStartTime, long accumulatedTime) { in Stopwatch() argument
46 mLastStartTime = lastStartTime; in Stopwatch()
DStopwatchDAO.java65 final long lastStartTime = prefs.getLong(LAST_START_TIME, Long.MIN_VALUE); in getStopwatch() local
67 return new Stopwatch(state, lastStartTime, accumulatedTime); in getStopwatch()
DTimerDAO.java93 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()