Searched refs:DAY_IN_MILLIS (Results 1 – 3 of 3) sorted by relevance
55 static final int DAY_IN_MILLIS = HOUR_IN_MILLIS * 24; field in AbstractCalendar144 days = zoneOffset / DAY_IN_MILLIS; in getCalendarDate()145 ms = zoneOffset % DAY_IN_MILLIS; in getCalendarDate()151 days += millis / DAY_IN_MILLIS; in getCalendarDate()152 ms += (int) (millis % DAY_IN_MILLIS); in getCalendarDate()153 if (ms >= DAY_IN_MILLIS) { in getCalendarDate()155 ms -= DAY_IN_MILLIS; in getCalendarDate()161 ms += DAY_IN_MILLIS; in getCalendarDate()181 long ms = (gd - EPOCH_OFFSET) * DAY_IN_MILLIS + getTimeOfDay(date); in getTime()385 if (fraction >= DAY_IN_MILLIS) { in normalizeTime()[all …]
393 adjustYear(ldate, (fixedDate - EPOCH_OFFSET) * DAY_IN_MILLIS, 0); in getCalendarDateFromFixedDate()
125 static final int DAY_IN_MILLIS = 86400000; // 0x5265c00 field in AbstractCalendar