Home | History | Annotate | Download | only in alarms

Lines Matching defs:hour

57         alarmTime.set(Calendar.HOUR_OF_DAY, alarm.hour);
66 alarm.hour, alarm.minute,
83 * Returns a next alarm time (nearest day) Calendar instance with the hour and the minute.
85 * @param hour the integer of the hour an alarm should go off
87 * @return a {@link Calendar} instance an alarm should go off given the passed hour and the
90 public Calendar getNextAlarmTime(int hour, int minute) {
92 alarmTime.set(Calendar.HOUR_OF_DAY, hour);
104 int hour = extras.getInt(AlarmIntentService.KEY_ALARM_HOUR);
107 return new Alarm(id, month, date, hour, minute);
115 extras.putInt(AlarmIntentService.KEY_ALARM_HOUR, alarm.hour);