Home | History | Annotate | Download | only in i18n

Lines Matching defs:julianDay

1370 void Calendar::computeGregorianAndDOWFields(int32_t julianDay, UErrorCode &ec)
1372 computeGregorianFields(julianDay, ec);
1375 int32_t dow = julianDayToDayOfWeek(julianDay);
1394 void Calendar::computeGregorianFields(int32_t julianDay, UErrorCode & /* ec */) {
1396 Grego::dayToFields(julianDay - kEpochStartAsJulianDay, fGregorianYear, fGregorianMonth, fGregorianDayOfMonth, gregorianDayOfWeekUnused, fGregorianDayOfYear);
1510 void Calendar::handleComputeFields(int32_t /* julianDay */, UErrorCode &/* status */)
2725 int32_t julianDay = computeJulianDay();
2727 double millis = Grego::julianDayToMillis(julianDay);
2732 // if(1 || julianInsanityCheck != julianDay) {
2734 // __FILE__, __LINE__, julianDay, millis<0.0?"NEG":"", millis, julianInsanityCheck);
2996 int32_t julianDay = handleComputeMonthStart(year, useMonth ? month : 0, useMonth);
3007 return julianDay + dayOfMonth;
3011 return julianDay + internalGet(UCAL_DAY_OF_YEAR);
3016 // At this point julianDay is the 0-based day BEFORE the first day of
3017 // January 1, year 1 of the given calendar. If julianDay == 0, it
3028 int32_t first = julianDayToDayOfWeek(julianDay + 1) - firstDayOfWeek;
3099 julianDay, nextJulianDay, (nextJulianDay-julianDay));
3101 julianDay = nextJulianDay;
3104 first = julianDayToDayOfWeek(julianDay + 1) - firstDayOfWeek;
3123 __FILE__, __LINE__, year, year-1, testDate, julianDay+testDate, nextJulianDay);
3125 if(julianDay+testDate > nextJulianDay) { // is it past Dec 31? (nextJulianDay is day BEFORE year+1's Jan 1)
3127 julianDay = handleComputeMonthStart(year-1, 0, FALSE); // jd before Jan 1 of previous year
3128 first = julianDayToDayOfWeek(julianDay + 1) - firstDayOfWeek; // 0 based local dow of first week
3137 __FILE__, __LINE__, date, julianDay, year-1);
3156 return julianDay + date;
3210 // At this point julianDay is the 0-based day BEFORE the first day of
3211 // January 1, year 1 of the given calendar. If julianDay == 0, it