Home | History | Annotate | Download | only in utility

Lines Matching refs:MINUTES

69     static final int MINUTES = SECONDS*60;
70 static final int HOURS = MINUTES*60;
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);
296 while ((endTime - startTime) > MINUTES) {
452 * Generate an rfc2445 utcOffset from minutes offset from GMT
454 * @param offsetMinutes minutes offset from GMT (east is positive, west is negative
466 int minutes = offsetMinutes % 60;
471 if (minutes < 10) {
474 sb.append(minutes);
552 int rawOffsetMinutes = tz.getRawOffset() / MINUTES;
577 utcOffsetString(rawOffsetMinutes + (tz.getDSTSavings() / MINUTES));
684 setLong(tziBytes, MSFT_TIME_ZONE_DAYLIGHT_BIAS_OFFSET, - dstOffset / MINUTES);
728 // but EAS gives us minutes, so do the conversion. Note that EAS is the bias that's added
731 MINUTES;
755 -1 * getLong(timeZoneBytes, MSFT_TIME_ZONE_DAYLIGHT_BIAS_OFFSET) * MINUTES;
771 Date before = new Date(millisAtTransition - MINUTES);
772 Date after = new Date(millisAtTransition + MINUTES);
780 before = new Date(millisAtTransition - (dstSavings + MINUTES));
781 after = new Date(millisAtTransition + MINUTES);