Home | History | Annotate | Download | only in i18n

Lines Matching refs:date

11  *   Date        Name        Description
41 // available. Set February to 29 days to accomodate rules with that date
42 // and day-of-week-on-or-before-that-date mode (DOW_LE_DOM_MODE).
272 * the exact starting date. Their exact meaning depend on their respective signs,
472 // Compare the date to the starting and ending rules.+1 = date>rule, -1
473 // = date<rule, 0 = date==rule.
508 SimpleTimeZone::getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt,
516 double day = uprv_floor(date / U_MILLIS_PER_DAY);
517 int32_t millis = (int32_t) (date - day * U_MILLIS_PER_DAY);
535 date -= getDSTSavings();
541 date -= getDSTSavings();
546 day = uprv_floor(date / U_MILLIS_PER_DAY);
547 millis = (int32_t) (date - day * U_MILLIS_PER_DAY);
559 * Compare a given date in the year to a rule. Return 1, 0, or -1, depending
560 * on whether the date is after, equal to, or before the rule date. The
564 * @return 1 if the date is after the rule date, -1 if the date is before
565 * the rule date, or 0 if the date is equal to the rule date.
715 * Queries if the given date is in Daylight Savings Time.
717 UBool SimpleTimeZone::inDaylightTime(UDate date, UErrorCode& status) const
729 gc->setTime(date, status);