Home
last modified time | relevance | path

Searched refs:StopwatchService (Results 1 – 5 of 5) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/data/
DStopwatchNotificationBuilder.kt40 import com.android.deskclock.stopwatch.StopwatchService
60 val showApp: Intent = Intent(context, StopwatchService::class.java) in build()
61 .setAction(StopwatchService.ACTION_SHOW_STOPWATCH) in build()
80 val pause: Intent = Intent(context, StopwatchService::class.java) in build()
81 .setAction(StopwatchService.ACTION_PAUSE_STOPWATCH) in build()
91 val lap: Intent = Intent(context, StopwatchService::class.java) in build()
92 .setAction(StopwatchService.ACTION_LAP_STOPWATCH) in build()
113 val start: Intent = Intent(context, StopwatchService::class.java) in build()
114 .setAction(StopwatchService.ACTION_START_STOPWATCH) in build()
123 val reset: Intent = Intent(context, StopwatchService::class.java) in build()
[all …]
/packages/apps/DeskClock/src/com/android/deskclock/
DHandleShortcuts.kt24 import com.android.deskclock.stopwatch.StopwatchService
35 StopwatchService.ACTION_PAUSE_STOPWATCH -> { in onCreate()
41 .setAction(StopwatchService.ACTION_PAUSE_STOPWATCH)) in onCreate()
44 StopwatchService.ACTION_START_STOPWATCH -> { in onCreate()
50 .setAction(StopwatchService.ACTION_START_STOPWATCH)) in onCreate()
/packages/apps/DeskClock/src/com/android/deskclock/controller/
DShortcutController.kt43 import com.android.deskclock.stopwatch.StopwatchService
121 intent = Intent(StopwatchService.ACTION_PAUSE_STOPWATCH) in createStopwatchShortcut()
126 intent = Intent(StopwatchService.ACTION_START_STOPWATCH) in createStopwatchShortcut()
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DStopwatchService.kt36 class StopwatchService : Service() { class
DStopwatchFragment.kt174 if (StopwatchService.Companion.ACTION_START_STOPWATCH == action) { in <lambda>()
178 } else if (StopwatchService.Companion.ACTION_PAUSE_STOPWATCH == action) { in <lambda>()