Home | History | Annotate | Download | only in calendarcommon2

Lines Matching refs:HOUR

258                             iterator.hour,
259 iterator.getActualMaximum(Time.HOUR));
785 freqField = Time.HOUR;
882 int iteratorHour = iterator.hour;
953 // hour
956 int hour = usebyhour
959 if (SPEW) Log.i(TAG, " hour=" + hour + " usebyhour=" + usebyhour);
980 generated.set(second, minute, hour, day, month, iteratorYear);
1080 case Time.HOUR:
1081 iterator.hour += value;
1130 * when time jumps forward an hour, then the "normalized" value will be
1141 int hour = date.hour;
1151 hour += addHours;
1152 int addDays = ((hour < 0) ? (hour - 23) : hour) / 24;
1153 hour -= addDays * 24;
1207 date.hour = hour;
1302 // 5 bits for the hour, 6 bits for the minute, 6 bits for the second.
1304 + (normalized.monthDay << 17) + (normalized.hour << 12)
1312 date.hour = (int) (val >> 12) & 0x1f;