HomeSort by relevance Sort by last modified time
    Searched refs:StopwatchService (Results 1 - 5 of 5) sorted by null

  /packages/apps/DeskClock/src/com/android/deskclock/
HandleShortcuts.java 24 import com.android.deskclock.stopwatch.StopwatchService;
42 case StopwatchService.ACTION_PAUSE_STOPWATCH:
48 .setAction(StopwatchService.ACTION_PAUSE_STOPWATCH));
51 case StopwatchService.ACTION_START_STOPWATCH:
57 .setAction(StopwatchService.ACTION_START_STOPWATCH));
  /packages/apps/DeskClock/src/com/android/deskclock/data/
StopwatchNotificationBuilder.java 36 import com.android.deskclock.stopwatch.StopwatchService;
53 final Intent showApp = new Intent(context, StopwatchService.class)
54 .setAction(StopwatchService.ACTION_SHOW_STOPWATCH)
73 final Intent pause = new Intent(context, StopwatchService.class)
74 .setAction(StopwatchService.ACTION_PAUSE_STOPWATCH)
84 final Intent lap = new Intent(context, StopwatchService.class)
85 .setAction(StopwatchService.ACTION_LAP_STOPWATCH)
106 final Intent start = new Intent(context, StopwatchService.class)
107 .setAction(StopwatchService.ACTION_START_STOPWATCH)
116 final Intent reset = new Intent(context, StopwatchService.class
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchService.java 38 public final class StopwatchService extends Service {
StopwatchFragment.java 178 if (StopwatchService.ACTION_START_STOPWATCH.equals(action)) {
182 } else if (StopwatchService.ACTION_PAUSE_STOPWATCH.equals(action)) {
  /packages/apps/DeskClock/src/com/android/deskclock/controller/
ShortcutController.java 43 import com.android.deskclock.stopwatch.StopwatchService;
128 intent = new Intent(StopwatchService.ACTION_PAUSE_STOPWATCH)
133 intent = new Intent(StopwatchService.ACTION_START_STOPWATCH)

Completed in 206 milliseconds