Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DStopwatchService.java64 Events.sendStopwatchEvent(R.string.action_show, label); in onStartCommand()
74 Events.sendStopwatchEvent(R.string.action_start, label); in onStartCommand()
79 Events.sendStopwatchEvent(R.string.action_pause, label); in onStartCommand()
84 Events.sendStopwatchEvent(R.string.action_reset, label); in onStartCommand()
89 Events.sendStopwatchEvent(R.string.action_lap, label); in onStartCommand()
DStopwatchFragment.java320 Events.sendStopwatchEvent(R.string.action_start, R.string.label_deskclock); in doStart()
328 Events.sendStopwatchEvent(R.string.action_pause, R.string.label_deskclock); in doPause()
337 Events.sendStopwatchEvent(R.string.action_reset, R.string.label_deskclock); in doReset()
381 Events.sendStopwatchEvent(R.string.action_lap, R.string.label_deskclock); in doAddLap()
/packages/apps/DeskClock/src/com/android/deskclock/
DHandleShortcuts.java43 Events.sendStopwatchEvent(R.string.action_pause, R.string.label_shortcut); in onCreate()
52 Events.sendStopwatchEvent(R.string.action_start, R.string.label_shortcut); in onCreate()
DDeskClock.java668 Events.sendStopwatchEvent(R.string.action_show, R.string.label_deskclock); in selectedTabChanged()
/packages/apps/DeskClock/src/com/android/deskclock/events/
DEvents.java68 public static void sendStopwatchEvent(@StringRes int action, @StringRes int label) { in sendStopwatchEvent() method in Events