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.java262 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, -1); in saveNotification()
265 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, clockTime); in saveNotification()
278 long clockElapsedTime = prefs.getLong(Stopwatches.NOTIF_CLOCK_ELAPSED, -1); in showSavedNotification()
301 editor.remove(Stopwatches.NOTIF_CLOCK_ELAPSED); in clearSavedNotification()
DStopwatchFragment.java723 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, -1); in writeToSharedPref()
726 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, mAccumulatedTime); in writeToSharedPref()
732 editor.remove(Stopwatches.NOTIF_CLOCK_ELAPSED); in writeToSharedPref()
DStopwatches.java47 public static final String NOTIF_CLOCK_ELAPSED = "notif_clock_elapsed"; field in Stopwatches