Home
last modified time | relevance | path

Searched refs:DAY_IN_MILLIS (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/sun/util/calendar/
DAbstractCalendar.java55 static final int DAY_IN_MILLIS = HOUR_IN_MILLIS * 24; field in AbstractCalendar
144 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 …]
DLocalGregorianCalendar.java393 adjustYear(ldate, (fixedDate - EPOCH_OFFSET) * DAY_IN_MILLIS, 0); in getCalendarDateFromFixedDate()
/libcore/ojluni/annotations/hiddenapi/sun/util/calendar/
DAbstractCalendar.java125 static final int DAY_IN_MILLIS = 86400000; // 0x5265c00 field in AbstractCalendar