Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DStopwatchService.java283 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, -1); in saveNotification()
286 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, clockTime); in saveNotification()
299 long clockElapsedTime = prefs.getLong(Stopwatches.NOTIF_CLOCK_ELAPSED, -1); in showSavedNotification()
322 editor.remove(Stopwatches.NOTIF_CLOCK_ELAPSED); in clearSavedNotification()
DStopwatchFragment.java758 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, -1); in writeToSharedPref()
761 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, mAccumulatedTime); in writeToSharedPref()
767 editor.remove(Stopwatches.NOTIF_CLOCK_ELAPSED); in writeToSharedPref()
DStopwatches.java43 public static final String NOTIF_CLOCK_ELAPSED = "notif_clock_elapsed"; field in Stopwatches