Lines Matching refs:string
122 final int eventLabel = intent.getIntExtra(EXTRA_EVENT_LABEL, R.string.label_intent); in handleStopwatchIntent()
125 Events.sendStopwatchEvent(R.string.action_show, eventLabel); in handleStopwatchIntent()
132 Events.sendStopwatchEvent(R.string.action_start, eventLabel); in handleStopwatchIntent()
133 reason = getString(R.string.stopwatch_started); in handleStopwatchIntent()
138 Events.sendStopwatchEvent(R.string.action_pause, eventLabel); in handleStopwatchIntent()
139 reason = getString(R.string.stopwatch_paused); in handleStopwatchIntent()
145 Events.sendStopwatchEvent(R.string.action_reset, eventLabel); in handleStopwatchIntent()
146 reason = getString(R.string.stopwatch_reset); in handleStopwatchIntent()
152 reason = getString(R.string.stopwatch_isnt_running); in handleStopwatchIntent()
155 Events.sendStopwatchEvent(R.string.action_lap, eventLabel); in handleStopwatchIntent()
156 reason = getString(R.string.stopwatch_lapped); in handleStopwatchIntent()
182 final int eventLabel = intent.getIntExtra(EXTRA_EVENT_LABEL, R.string.label_intent); in handleTimerIntent()
187 Events.sendTimerEvent(R.string.action_show, eventLabel); in handleTimerIntent()
195 reason = getString(R.string.no_timers_exist); in handleTimerIntent()
198 reason = getString(R.string.too_many_timers_exist); in handleTimerIntent()
206 reason = getString(R.string.timer_does_not_exist); in handleTimerIntent()
221 reason = getString(R.string.timer_deleted); in handleTimerIntent()
223 reason = getString(R.string.timer_was_reset); in handleTimerIntent()
229 Events.sendTimerEvent(R.string.action_start, eventLabel); in handleTimerIntent()
230 reason = getString(R.string.timer_started); in handleTimerIntent()
235 Events.sendTimerEvent(R.string.action_pause, eventLabel); in handleTimerIntent()
236 reason = getString(R.string.timer_paused); in handleTimerIntent()
263 final int label = fromWidget ? R.string.label_widget : R.string.label_intent; in handleClockIntent()
264 Events.sendClockEvent(R.string.action_show, label); in handleClockIntent()
273 reason = getString(R.string.no_city_selected); in handleClockIntent()
280 Events.sendClockEvent(R.string.action_add, R.string.label_intent); in handleClockIntent()
283 Events.sendClockEvent(R.string.action_delete, R.string.label_intent); in handleClockIntent()
292 reason = getString(R.string.the_city_you_specified_is_not_available); in handleClockIntent()
297 Events.sendClockEvent(R.string.action_add, R.string.label_intent); in handleClockIntent()
300 Events.sendClockEvent(R.string.action_delete, R.string.label_intent); in handleClockIntent()
314 reason = getString(R.string.the_city_already_added); in handleClockIntent()
320 reason = getString(R.string.city_added, city.getName()); in handleClockIntent()
321 Events.sendClockEvent(R.string.action_add, R.string.label_intent); in handleClockIntent()
328 reason = getString(R.string.the_city_you_specified_is_not_available); in handleClockIntent()
334 reason = getString(R.string.city_deleted, city.getName()); in handleClockIntent()
335 Events.sendClockEvent(R.string.action_delete, R.string.label_intent); in handleClockIntent()