Lines Matching refs:days
56 // The number of days between January 1, 1 and January 1, 1970 (Gregorian)
119 long days = 0; // fixed date
137 // days should be 0 and ms is in the range of -13:00 to
139 days = zoneOffset / DAY_IN_MILLIS;
146 days += millis / DAY_IN_MILLIS;
151 ++days;
157 --days;
162 days += EPOCH_OFFSET;
165 getCalendarDateFromFixedDate(date, days);
376 long days = 0;
379 days = fraction / DAY_IN_MILLIS;
382 days = CalendarUtils.floorDivide(fraction, DAY_IN_MILLIS);
383 if (days != 0) {
384 fraction -= DAY_IN_MILLIS * days; // mod(fraction, DAY_IN_MILLIS)
387 if (days != 0) {
396 return (int)days;