Home | History | Annotate | Download | only in format

Lines Matching refs:HOUR

75      * True if this is an allDay event. The hour, minute, second fields are
91 * Hour of day [0-23]
93 public int hour;
146 public static final int HOUR = 3;
254 * @param field one of the constants for HOUR, MINUTE, SECOND, etc.
263 case HOUR:
305 this.hour = 0;
324 * hour}, {@code minute}, and {@code second} are not 0.
378 * field of this Time class is set to true and the <code>hour</code>,
451 // hour
454 hour = n;
473 hour = 0;
522 * the {@link #allDay} field is set to true and the {@link #hour},
579 // hour
583 // Note that this.hour is not set here. It is set later.
584 int hour = n;
640 // hour
644 hour += n;
653 this.hour = hour;
661 this.hour = 0;
707 * ambiguous because it falls in the hour that is repeated when switching
773 this.hour = that.hour;
787 public void set(int second, int minute, int hour, int monthDay, int month, int year) {
791 this.hour = hour;
814 this.hour = 0;
964 * hour at 12am on April 25, 2008 and there are a few other places that
986 hour = 0;
1228 time.hour = wallTime.getHour();
1246 wallTime.setHour(time.hour);
1255 if (time.allDay && (time.second != 0 || time.minute != 0 || time.hour != 0)) {
1256 throw new IllegalArgumentException("allDay is true but sec, min, hour are not 0.");