Home | History | Annotate | Download | only in format

Lines Matching defs:julianDay

976         long julianDay = (millis + offsetMillis) / DateUtils.DAY_IN_MILLIS;
977 return (int) julianDay + EPOCH_JULIAN_DAY;
997 * @param julianDay the Julian day in the timezone for this Time object
1000 public long setJulianDay(int julianDay) {
1004 long millis = (julianDay - EPOCH_JULIAN_DAY) * DateUtils.DAY_IN_MILLIS;
1010 int diff = julianDay - approximateDay;
1028 * @param julianDay The julian day to calculate the week number for
1033 public static int getWeeksSinceEpochFromJulianDay(int julianDay, int firstDayOfWeek) {
1039 return (julianDay - refDay) / 7;