Home | History | Annotate | Download | only in unicode

Lines Matching refs:date

11  *   Date        Name        Description
275 * the exact starting date. Their exact meaning depend on their respective signs,
319 * the exact starting date. Their exact meaning depend on their respective signs,
361 * Sets the DST start rule to a fixed date within a month.
364 * @param dayOfMonth The date in that month (1-based).
374 * Sets the DST start rule to a fixed date within a month.
377 * @param dayOfMonth The date in that month (1-based).
390 * Sets the DST start rule to a weekday before or after a give date within
394 * @param dayOfMonth A date within that month (1-based).
408 * Sets the DST start rule to a weekday before or after a give date within
412 * @param dayOfMonth A date within that month (1-based).
481 * Sets the DST end rule to a fixed date within a month.
484 * @param dayOfMonth The date in that month (1-based).
494 * Sets the DST end rule to a fixed date within a month.
497 * @param dayOfMonth The date in that month (1-based).
510 * Sets the DST end rule to a weekday before or after a give date within
514 * @param dayOfMonth A date within that month (1-based).
529 * Sets the DST end rule to a weekday before or after a give date within
533 * @param dayOfMonth A date within that month (1-based).
552 * account) as of a particular reference date. The reference date is used to determine
555 * at this particular date and time?). For the time zones produced by createTimeZone(),
556 * the reference data is specified according to the Gregorian calendar, and the date
559 * @param era The reference date's era
560 * @param year The reference date's year
561 * @param month The reference date's month (0-based; 0 is January)
562 * @param day The reference date's day-in-month (1-based)
563 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday)
564 * @param millis The reference date's milliseconds in day, UTT (NOT local time).
573 * Gets the time zone offset, for current date, modified in case of
575 * @param era the era of the given date.
576 * @param year the year in the given date.
577 * @param month the month in the given date.
579 * @param day the day-in-month of the given date.
580 * @param dayOfWeek the day-of-week of the given date.
591 * Gets the time zone offset, for current date, modified in case of
593 * @param era the era of the given date.
594 * @param year the year in the given date.
595 * @param month the month in the given date.
597 * @param day the day-in-month of the given date.
598 * @param dayOfWeek the day-of-week of the given date.
616 virtual void getOffset(UDate date, UBool local, int32_t& rawOffset,
623 virtual void getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt,
672 * Returns true if the given date is within the period when daylight savings time
679 * @param date The date to test.
681 * @return true if the given date is in Daylight Savings Time;
685 virtual UBool inDaylightTime(UDate date, UErrorCode& status) const;
822 * Compare a given date in the year to a rule. Return 1, 0, or -1, depending
823 * on whether the date is after, equal to, or before the rule date. The
827 * @return 1 if the date is after the rule date, -1 if the date is before
828 * the rule date, or 0 if the date is equal to the rule date.
918 SimpleTimeZone::getOffset(UDate date, UBool local, int32_t& rawOffsetRef,
920 TimeZone::getOffset(date, local, rawOffsetRef, dstOffsetRef, ec);