Home | History | Annotate | Download | only in deskclock

Lines Matching refs:Timer

42 import com.android.deskclock.data.Timer;
78 public static LabelDialogFragment newInstance(Timer timer) {
80 args.putString(ARG_LABEL, timer.getLabel());
81 args.putInt(ARG_TIMER_ID, timer.getId());
177 * Sets the new label into the timer or alarm.
189 final Timer timer = DataModel.getDataModel().getTimer(mTimerId);
190 if (timer != null) {
191 DataModel.getDataModel().setTimerLabel(timer, label);