Home | History | Annotate | Download | only in deskclock

Lines Matching refs:MINUTES

269         final int minutes;
271 minutes = intent.getIntExtra(AlarmClock.EXTRA_MINUTES, -1);
273 minutes = 0;
275 if (hour < 0 || hour > 23 || minutes < 0 || minutes > 59) {
282 Voice.notifyFailure(this, getString(R.string.invalid_time, hour, minutes, " "));
292 setSelectionFromIntent(intent, hour, minutes, selection, args);
299 Alarm alarm = new Alarm(hour, minutes);
420 int minutes,
425 selection.append(" AND ").append(Alarm.MINUTES).append("=?");
426 args.add(String.valueOf(minutes));