Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DStopwatchService.java47 Events.sendStopwatchEvent(R.string.action_start, R.string.label_notification); in onStartCommand()
52 Events.sendStopwatchEvent(R.string.action_pause, R.string.label_notification); in onStartCommand()
57 Events.sendStopwatchEvent(R.string.action_lap, R.string.label_notification); in onStartCommand()
63 Events.sendStopwatchEvent(R.string.action_reset, R.string.label_notification); in onStartCommand()
DStopwatchFragment.java265 Events.sendStopwatchEvent(R.string.action_start, R.string.label_deskclock); in doStart()
287 Events.sendStopwatchEvent(R.string.action_pause, R.string.label_deskclock); in doPause()
311 Events.sendStopwatchEvent(R.string.action_reset, R.string.label_deskclock); in doReset()
360 Events.sendStopwatchEvent(R.string.action_lap, R.string.label_deskclock); in doAddLap()
/packages/apps/DeskClock/src/com/android/deskclock/
DHandleDeskClockApiCalls.java125 Events.sendStopwatchEvent(R.string.action_show, eventLabel); in handleStopwatchIntent()
132 Events.sendStopwatchEvent(R.string.action_start, eventLabel); in handleStopwatchIntent()
138 Events.sendStopwatchEvent(R.string.action_pause, eventLabel); in handleStopwatchIntent()
145 Events.sendStopwatchEvent(R.string.action_reset, eventLabel); in handleStopwatchIntent()
155 Events.sendStopwatchEvent(R.string.action_lap, eventLabel); in handleStopwatchIntent()
DAlarmInitReceiver.java68 Events.sendStopwatchEvent(R.string.action_reset, R.string.label_reboot); in onReceive()
DDeskClock.java397 Events.sendStopwatchEvent(R.string.action_show, R.string.label_deskclock); in onPageSelected()
/packages/apps/DeskClock/src/com/android/deskclock/events/
DEvents.java74 public static void sendStopwatchEvent(@StringRes int action, @StringRes int label) { in sendStopwatchEvent() method in Events