Home
last modified time | relevance | path

Searched refs:NOTIF_CLOCK_BASE (Results 1 – 3 of 3) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DStopwatchService.java261 editor.putLong(Stopwatches.NOTIF_CLOCK_BASE, clockTime); in saveNotification()
266 editor.putLong(Stopwatches.NOTIF_CLOCK_BASE, -1); in saveNotification()
277 long clockBaseTime = prefs.getLong(Stopwatches.NOTIF_CLOCK_BASE, -1); in showSavedNotification()
299 editor.remove(Stopwatches.NOTIF_CLOCK_BASE); in clearSavedNotification()
DStopwatchFragment.java722 editor.putLong(Stopwatches.NOTIF_CLOCK_BASE, mStartTime-mAccumulatedTime); in writeToSharedPref()
727 editor.putLong(Stopwatches.NOTIF_CLOCK_BASE, -1); in writeToSharedPref()
730 editor.remove(Stopwatches.NOTIF_CLOCK_BASE); in writeToSharedPref()
DStopwatches.java46 public static final String NOTIF_CLOCK_BASE = "notif_clock_base"; field in Stopwatches