Home | History | Annotate | Download | only in i18n

Lines Matching defs:julianDay

1570 void Calendar::computeGregorianAndDOWFields(int32_t julianDay, UErrorCode &ec)
1572 computeGregorianFields(julianDay, ec);
1575 int32_t dow = julianDayToDayOfWeek(julianDay);
1594 void Calendar::computeGregorianFields(int32_t julianDay, UErrorCode & /* ec */) {
1596 Grego::dayToFields(julianDay - kEpochStartAsJulianDay, fGregorianYear, fGregorianMonth, fGregorianDayOfMonth, gregorianDayOfWeekUnused, fGregorianDayOfYear);
1710 void Calendar::handleComputeFields(int32_t /* julianDay */, UErrorCode &/* status */)
2956 int32_t julianDay = computeJulianDay();
2958 double millis = Grego::julianDayToMillis(julianDay);
2963 // if(1 || julianInsanityCheck != julianDay) {
2965 // __FILE__, __LINE__, julianDay, millis<0.0?"NEG":"", millis, julianInsanityCheck);
3239 int32_t julianDay = handleComputeMonthStart(year, useMonth ? month : 0, useMonth);
3250 return julianDay + dayOfMonth;
3254 return julianDay + internalGet(UCAL_DAY_OF_YEAR);
3259 // At this point julianDay is the 0-based day BEFORE the first day of
3260 // January 1, year 1 of the given calendar. If julianDay == 0, it
3271 int32_t first = julianDayToDayOfWeek(julianDay + 1) - firstDayOfWeek;
3342 julianDay, nextJulianDay, (nextJulianDay-julianDay));
3344 julianDay = nextJulianDay;
3347 first = julianDayToDayOfWeek(julianDay + 1) - firstDayOfWeek;
3366 __FILE__, __LINE__, year, year-1, testDate, julianDay+testDate, nextJulianDay);
3368 if(julianDay+testDate > nextJulianDay) { // is it past Dec 31? (nextJulianDay is day BEFORE year+1's Jan 1)
3370 julianDay = handleComputeMonthStart(year-1, 0, FALSE); // jd before Jan 1 of previous year
3371 first = julianDayToDayOfWeek(julianDay + 1) - firstDayOfWeek; // 0 based local dow of first week
3380 __FILE__, __LINE__, date, julianDay, year-1);
3399 return julianDay + date;
3453 // At this point julianDay is the 0-based day BEFORE the first day of
3454 // January 1, year 1 of the given calendar. If julianDay == 0, it