Lines Matching full:day
40 // and day-of-week-on-or-before-that-date mode (DOW_LE_DOM_MODE).
273 * day of week in the month (e.g., (2, WEDNESDAY) is the second Wednesday
276 * the day of week in the month counting backward from the end of the month.
279 * specifies the day of the month, regardless of what day of the week it is.
280 * (e.g., (10, 0) is the tenth day of the month)
282 * specifies the day of the month counting backward from the end of the
283 * month, regardless of what day of the week it is (e.g., (-2, 0) is the
284 * next-to-last day of the month).
286 * first specified day of the week on or after the specfied day of the month.
290 * last specified day of the week on or before the specified day of the month.
296 * day-of-week-in-month. Please see the member description for an example.
297 * @param dayOfWeek the daylight savings starting day-of-week. Please see
348 * day-of-week-in-month. See setStartRule() for a complete explanation.
349 * @param dayOfWeek the daylight savings ending day-of-week. See setStartRule()
390 SimpleTimeZone::getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
405 return getOffset(era, year, month, day, dayOfWeek, millis, Grego::monthLength(year, month), status);
409 SimpleTimeZone::getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
429 return getOffset(era, year, month, day, dayOfWeek, millis,
436 SimpleTimeZone::getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
446 || day < 1
447 || day > monthLength
473 (int8_t)day, (int8_t)dayOfWeek, millis,
487 (int8_t)day, (int8_t)dayOfWeek, millis,
514 double day = uprv_floor(date / U_MILLIS_PER_DAY);
515 int32_t millis = (int32_t) (date - day * U_MILLIS_PER_DAY);
517 Grego::dayToFields(day, year, month, dom, dow);
544 day = uprv_floor(date / U_MILLIS_PER_DAY);
545 millis = (int32_t) (date - day * U_MILLIS_PER_DAY);
546 Grego::dayToFields(day, year, month, dom, dow);
602 // calculate the actual day of month for the rule
612 // if the mode is day-of-month, the day of month is given
617 // if the mode is day-of-week-in-month, calculate the day-of-month from it
619 // In this case ruleDay is the day-of-week-in-month (this code is using
620 // the dayOfWeek and dayOfMonth parameters to figure out the day-of-week
621 // of the first day of the month, so it's trusting that they're really
628 // the same calculation figuring backward from the last day of the month.
633 // the day of week of the first of the month)
652 // now that we have a real day-in-month for the rule, we can compare days...
789 // startDay The day of the month, or for DOW_IN_MONTH mode, a
792 // startDayOfWeek The day of the week. Ignored for DAY_OF_MONTH.
824 * endDayOfMonth. Upon entry, the day of week variables may be zero or
825 * negative, in order to indicate special modes. The day of month
827 * set, and the day of week and day of month variables will be positive.
847 * day
857 * entire day. Although this is equivalent to time 0 of the following day,