Home | History | Annotate | Download | only in i18n

Lines Matching refs:date

220                     // Note: Setting finalStartYear to the finalZone is problematic.  When a date is around
370 UDate date = (UDate)(Grego::fieldsToDay(year, month, dom) * U_MILLIS_PER_DAY + millis);
372 getHistoricalOffset(date, TRUE, kDaylight, kStandard, rawoff, dstoff);
379 void OlsonTimeZone::getOffset(UDate date, UBool local, int32_t& rawoff,
384 if (finalZone != NULL && date >= finalStartMillis) {
385 finalZone->getOffset(date, local, rawoff, dstoff, ec);
387 getHistoricalOffset(date, local, kFormer, kLatter, rawoff, dstoff);
392 OlsonTimeZone::getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt,
397 if (finalZone != NULL && date >= finalStartMillis) {
398 finalZone->getOffsetFromLocal(date, nonExistingTimeOpt, duplicatedTimeOpt, rawoff, dstoff, ec);
400 getHistoricalOffset(date, TRUE, nonExistingTimeOpt, duplicatedTimeOpt, rawoff, dstoff);
458 OlsonTimeZone::getHistoricalOffset(UDate date, UBool local,
462 date, local?"T":"F", NonExistingTimeOpt, DuplicatedTimeOpt));
464 printTime(date*1000.0);
469 double sec = uprv_floor(date / U_MILLIS_PER_SECOND);
537 date, local?"T":"F", NonExistingTimeOpt, DuplicatedTimeOpt, rawoff, dstoff));
586 UBool OlsonTimeZone::inDaylightTime(UDate date, UErrorCode& ec) const {
588 getOffset(date, FALSE, raw, dst, ec);