Lines Matching refs:date
11 * Date Name Description
42 // available. Set February to 29 days to accomodate rules with that date
43 // and day-of-week-on-or-before-that-date mode (DOW_LE_DOM_MODE).
273 * the exact starting date. Their exact meaning depend on their respective signs,
473 // Compare the date to the starting and ending rules.+1 = date>rule, -1
474 // = date<rule, 0 = date==rule.
509 SimpleTimeZone::getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt,
517 double day = uprv_floor(date / U_MILLIS_PER_DAY);
518 int32_t millis = (int32_t) (date - day * U_MILLIS_PER_DAY);
536 date -= getDSTSavings();
542 date -= getDSTSavings();
547 day = uprv_floor(date / U_MILLIS_PER_DAY);
548 millis = (int32_t) (date - day * U_MILLIS_PER_DAY);
560 * Compare a given date in the year to a rule. Return 1, 0, or -1, depending
561 * on whether the date is after, equal to, or before the rule date. The
565 * @return 1 if the date is after the rule date, -1 if the date is before
566 * the rule date, or 0 if the date is equal to the rule date.
716 * Queries if the given date is in Daylight Savings Time.
718 UBool SimpleTimeZone::inDaylightTime(UDate date, UErrorCode& status) const
730 gc->setTime(date, status);