Lines Matching refs:date
11 * Date Name Description
39 // available. Set February to 29 days to accomodate rules with that date
40 // and day-of-week-on-or-before-that-date mode (DOW_LE_DOM_MODE).
270 * the exact starting date. Their exact meaning depend on their respective signs,
470 // Compare the date to the starting and ending rules.+1 = date>rule, -1
471 // = date<rule, 0 = date==rule.
506 SimpleTimeZone::getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt,
514 double day = uprv_floor(date / U_MILLIS_PER_DAY);
515 int32_t millis = (int32_t) (date - day * U_MILLIS_PER_DAY);
533 date -= getDSTSavings();
539 date -= getDSTSavings();
544 day = uprv_floor(date / U_MILLIS_PER_DAY);
545 millis = (int32_t) (date - day * U_MILLIS_PER_DAY);
557 * Compare a given date in the year to a rule. Return 1, 0, or -1, depending
558 * on whether the date is after, equal to, or before the rule date. The
562 * @return 1 if the date is after the rule date, -1 if the date is before
563 * the rule date, or 0 if the date is equal to the rule date.
713 * Queries if the given date is in Daylight Savings Time.
715 UBool SimpleTimeZone::inDaylightTime(UDate date, UErrorCode& status) const
727 gc->setTime(date, status);