Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DStopwatchService.java263 editor.putBoolean(Stopwatches.NOTIF_CLOCK_RUNNING, true); in saveNotification()
267 editor.putBoolean(Stopwatches.NOTIF_CLOCK_RUNNING, false); in saveNotification()
279 boolean clockRunning = prefs.getBoolean(Stopwatches.NOTIF_CLOCK_RUNNING, false); in showSavedNotification()
300 editor.remove(Stopwatches.NOTIF_CLOCK_RUNNING); in clearSavedNotification()
DStopwatchFragment.java724 editor.putBoolean(Stopwatches.NOTIF_CLOCK_RUNNING, true); in writeToSharedPref()
728 editor.putBoolean(Stopwatches.NOTIF_CLOCK_RUNNING, false); in writeToSharedPref()
731 editor.remove(Stopwatches.NOTIF_CLOCK_RUNNING); in writeToSharedPref()
DStopwatches.java48 public static final String NOTIF_CLOCK_RUNNING = "notif_clock_running"; field in Stopwatches