Searched refs:MILLIS_PER_MINUTE (Results 1 – 9 of 9) sorted by relevance
38 public static final int MILLIS_PER_MINUTE = 60*MILLIS_PER_SECOND; field in Grego39 public static final int MILLIS_PER_HOUR = 60*MILLIS_PER_MINUTE;228 int min = millis / MILLIS_PER_MINUTE; in timeToString()229 millis = millis % MILLIS_PER_MINUTE; in timeToString()
948 + (long)hour * Grego.MILLIS_PER_HOUR + (long)min * Grego.MILLIS_PER_MINUTE;
40 public static final int MILLIS_PER_MINUTE = 60*MILLIS_PER_SECOND; field in Grego41 public static final int MILLIS_PER_HOUR = 60*MILLIS_PER_MINUTE;230 int min = millis / MILLIS_PER_MINUTE; in timeToString()231 millis = millis % MILLIS_PER_MINUTE; in timeToString()
950 + (long)hour * Grego.MILLIS_PER_HOUR + (long)min * Grego.MILLIS_PER_MINUTE;
120 static const int32_t MILLIS_PER_MINUTE = 60 * 1000; variable1489 …Indicator && (absOffset < MILLIS_PER_SECOND || (ignoreSeconds && absOffset < MILLIS_PER_MINUTE))) { in formatOffsetISO8601()1510 fields[1] = absOffset / MILLIS_PER_MINUTE; in formatOffsetISO8601()1511 absOffset = absOffset % MILLIS_PER_MINUTE; in formatOffsetISO8601()1574 int32_t offsetM = offset / MILLIS_PER_MINUTE; in formatOffsetLocalizedGMT()1575 offset = offset % MILLIS_PER_MINUTE; in formatOffsetLocalizedGMT()1955 offset = hour * MILLIS_PER_HOUR + min * MILLIS_PER_MINUTE + sec * MILLIS_PER_SECOND; in parseAbuttingOffsetFields()2070 return hour * MILLIS_PER_HOUR + min * MILLIS_PER_MINUTE + sec * MILLIS_PER_SECOND; in parseDefaultOffsetFields()2150 fields[1] = offset / MILLIS_PER_MINUTE; in formatOffsetWithAsciiDigits()2151 offset = offset % MILLIS_PER_MINUTE; in formatOffsetWithAsciiDigits()[all …]
347 private static final int MILLIS_PER_MINUTE = 60 * 1000; field in TimeZoneFormat1579 int offsetM = offset / MILLIS_PER_MINUTE;1580 offset = offset % MILLIS_PER_MINUTE;1642 …Indicator && (absOffset < MILLIS_PER_SECOND || (ignoreSeconds && absOffset < MILLIS_PER_MINUTE))) {1659 fields[1] = absOffset / MILLIS_PER_MINUTE;1660 absOffset = absOffset % MILLIS_PER_MINUTE;2482 return hour * MILLIS_PER_HOUR + min * MILLIS_PER_MINUTE + sec * MILLIS_PER_SECOND;2551 offset = hour * MILLIS_PER_HOUR + min * MILLIS_PER_MINUTE + sec * MILLIS_PER_SECOND;2900 offset += fieldVal[1] * MILLIS_PER_MINUTE;
383 private static final int MILLIS_PER_MINUTE = 60 * 1000; field in TimeZoneFormat1649 int offsetM = offset / MILLIS_PER_MINUTE;1650 offset = offset % MILLIS_PER_MINUTE;1712 …Indicator && (absOffset < MILLIS_PER_SECOND || (ignoreSeconds && absOffset < MILLIS_PER_MINUTE))) {1729 fields[1] = absOffset / MILLIS_PER_MINUTE;1730 absOffset = absOffset % MILLIS_PER_MINUTE;2552 return hour * MILLIS_PER_HOUR + min * MILLIS_PER_MINUTE + sec * MILLIS_PER_SECOND;2621 offset = hour * MILLIS_PER_HOUR + min * MILLIS_PER_MINUTE + sec * MILLIS_PER_SECOND;2970 offset += fieldVal[1] * MILLIS_PER_MINUTE;
1933 int min = t / Grego.MILLIS_PER_MINUTE; in getDateTimeString()1934 t %= Grego.MILLIS_PER_MINUTE; in getDateTimeString()2007 … time += (hour*Grego.MILLIS_PER_HOUR + min*Grego.MILLIS_PER_MINUTE + sec*Grego.MILLIS_PER_SECOND); in parseDateTimeString()
1902 int min = t / Grego.MILLIS_PER_MINUTE; in getDateTimeString()1903 t %= Grego.MILLIS_PER_MINUTE; in getDateTimeString()1976 … time += (hour*Grego.MILLIS_PER_HOUR + min*Grego.MILLIS_PER_MINUTE + sec*Grego.MILLIS_PER_SECOND); in parseDateTimeString()