Home | History | Annotate | Download | only in i18n

Lines Matching defs:julianDay

1376 void Calendar::computeGregorianAndDOWFields(int32_t julianDay, UErrorCode &ec)
1378 computeGregorianFields(julianDay, ec);
1381 int32_t dow = julianDayToDayOfWeek(julianDay);
1400 void Calendar::computeGregorianFields(int32_t julianDay, UErrorCode & /* ec */) {
1402 Grego::dayToFields(julianDay - kEpochStartAsJulianDay, fGregorianYear, fGregorianMonth, fGregorianDayOfMonth, gregorianDayOfWeekUnused, fGregorianDayOfYear);
1516 void Calendar::handleComputeFields(int32_t /* julianDay */, UErrorCode &/* status */)
2731 int32_t julianDay = computeJulianDay();
2733 double millis = Grego::julianDayToMillis(julianDay);
2738 // if(1 || julianInsanityCheck != julianDay) {
2740 // __FILE__, __LINE__, julianDay, millis<0.0?"NEG":"", millis, julianInsanityCheck);
3002 int32_t julianDay = handleComputeMonthStart(year, useMonth ? month : 0, useMonth);
3013 return julianDay + dayOfMonth;
3017 return julianDay + internalGet(UCAL_DAY_OF_YEAR);
3022 // At this point julianDay is the 0-based day BEFORE the first day of
3023 // January 1, year 1 of the given calendar. If julianDay == 0, it
3034 int32_t first = julianDayToDayOfWeek(julianDay + 1) - firstDayOfWeek;
3105 julianDay, nextJulianDay, (nextJulianDay-julianDay));
3107 julianDay = nextJulianDay;
3110 first = julianDayToDayOfWeek(julianDay + 1) - firstDayOfWeek;
3129 __FILE__, __LINE__, year, year-1, testDate, julianDay+testDate, nextJulianDay);
3131 if(julianDay+testDate > nextJulianDay) { // is it past Dec 31? (nextJulianDay is day BEFORE year+1's Jan 1)
3133 julianDay = handleComputeMonthStart(year-1, 0, FALSE); // jd before Jan 1 of previous year
3134 first = julianDayToDayOfWeek(julianDay + 1) - firstDayOfWeek; // 0 based local dow of first week
3143 __FILE__, __LINE__, date, julianDay, year-1);
3162 return julianDay + date;
3216 // At this point julianDay is the 0-based day BEFORE the first day of
3217 // January 1, year 1 of the given calendar. If julianDay == 0, it