Lines Matching refs:timer
37 import com.android.deskclock.timer.TimerObj;
46 private static final String KEY_TIMER = "timer";
61 public static LabelDialogFragment newInstance(TimerObj timer, String label, String tag) {
65 args.putParcelable(KEY_TIMER, timer);
83 final TimerObj timer = bundle.getParcelable(KEY_TIMER);
94 set(alarm, timer, tag);
128 set(alarm, timer, tag);
138 private void set(Alarm alarm, TimerObj timer, String tag) {
147 } else if (timer != null) {
148 set(timer, tag, label);
150 LogUtils.e("No alarm or timer available.");
166 private void set(TimerObj timer, String tag, String label) {
170 ((DeskClock) getActivity()).onDialogLabelSet(timer, label, tag);
188 void onDialogLabelSet(TimerObj timer, String label, String tag);