Home | History | Annotate | Download | only in utility

Lines Matching refs:HOURS

70     static final int HOURS = MINUTES*60;
71 static final long DAYS = HOURS*24;
198 // Turn hours/minutes into ms from midnight (per TimeZone)
219 // Turn hours/minutes into ms from midnight (per TimeZone)
253 // Turn hours/minutes into ms from midnight (per TimeZone)
258 tzd.time = (hour*HOURS) + (minute*MINUTES);
459 int hours = offsetMinutes / 60;
460 if (hours < 0) {
462 hours = 0 - hours;
467 if (hours < 10) {
470 sb.append(hours);
1488 long durationMillis = HOURS;