Home | History | Annotate | Download | only in i18n

Lines Matching refs:day

43 // and day-of-week-on-or-before-that-date mode (DOW_LE_DOM_MODE).
276 * day of week in the month (e.g., (2, WEDNESDAY) is the second Wednesday
279 * the day of week in the month counting backward from the end of the month.
282 * specifies the day of the month, regardless of what day of the week it is.
283 * (e.g., (10, 0) is the tenth day of the month)
285 * specifies the day of the month counting backward from the end of the
286 * month, regardless of what day of the week it is (e.g., (-2, 0) is the
287 * next-to-last day of the month).
289 * first specified day of the week on or after the specfied day of the month.
293 * last specified day of the week on or before the specified day of the month.
299 * day-of-week-in-month. Please see the member description for an example.
300 * @param dayOfWeek the daylight savings starting day-of-week. Please see
351 * day-of-week-in-month. See setStartRule() for a complete explanation.
352 * @param dayOfWeek the daylight savings ending day-of-week. See setStartRule()
393 SimpleTimeZone::getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
408 return getOffset(era, year, month, day, dayOfWeek, millis, Grego::monthLength(year, month), status);
412 SimpleTimeZone::getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
432 return getOffset(era, year, month, day, dayOfWeek, millis,
439 SimpleTimeZone::getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
449 || day < 1
450 || day > monthLength
476 (int8_t)day, (int8_t)dayOfWeek, millis,
490 (int8_t)day, (int8_t)dayOfWeek, millis,
517 double day = uprv_floor(date / U_MILLIS_PER_DAY);
518 int32_t millis = (int32_t) (date - day * U_MILLIS_PER_DAY);
520 Grego::dayToFields(day, year, month, dom, dow);
547 day = uprv_floor(date / U_MILLIS_PER_DAY);
548 millis = (int32_t) (date - day * U_MILLIS_PER_DAY);
549 Grego::dayToFields(day, year, month, dom, dow);
605 // calculate the actual day of month for the rule
615 // if the mode is day-of-month, the day of month is given
620 // if the mode is day-of-week-in-month, calculate the day-of-month from it
622 // In this case ruleDay is the day-of-week-in-month (this code is using
623 // the dayOfWeek and dayOfMonth parameters to figure out the day-of-week
624 // of the first day of the month, so it's trusting that they're really
631 // the same calculation figuring backward from the last day of the month.
636 // the day of week of the first of the month)
655 // now that we have a real day-in-month for the rule, we can compare days...
792 // startDay The day of the month, or for DOW_IN_MONTH mode, a
795 // startDayOfWeek The day of the week. Ignored for DAY_OF_MONTH.
827 * endDayOfMonth. Upon entry, the day of week variables may be zero or
828 * negative, in order to indicate special modes. The day of month
830 * set, and the day of week and day of month variables will be positive.
850 * day -5..5 1..31 1..31 -1..-31 0
860 * entire day. Although this is equivalent to time 0 of the following day,