Home | History | Annotate | Download | only in util

Lines Matching defs:endMonth

47     private int endMonth, endDay, endDayOfWeek, endTime;
124 * the same applies for the {@code endMonth}, {@code endDay}, and {@code endDayOfWeek}.
146 * @param endMonth
164 int startDay, int startDayOfWeek, int startTime, int endMonth,
167 endMonth, endDay, endDayOfWeek, endTime, 3600000);
193 * @param endMonth
213 int startDay, int startDayOfWeek, int startTime, int endMonth,
226 this.endMonth = endMonth;
262 * @param endMonth
281 int endMonth, int endDay, int endDayOfWeek, int endTime,
285 endMonth, endDay, endDayOfWeek, endTime, daylightSavings);
327 && startTime == tz.startTime && endMonth == tz.endMonth
354 if (endMonth < startMonth) {
355 if (month > endMonth && month < startMonth) {
359 endMonth) {
408 if (month == endMonth || (ruleTime < 0 && nextMonth == endMonth)) {
418 daysInMonth = GregorianCalendar.DaysInMonth[endMonth];
419 if (endMonth == Calendar.FEBRUARY && isLeapYear(year)) {
444 int ruleMonth = endMonth;
499 + startTime + startMode + endMonth + endDay + endDayOfWeek
521 && startTime == tz.startTime && endMonth == tz.endMonth
589 checkRange(endMonth, endMode == DOM_MODE ? 1 : endDayOfWeek,
592 checkDay(endMonth, endDay);
617 endMonth = month;
640 endMonth = month;
664 endMonth = month;
819 + endMode + ",endMonth=" + endMonth + ",endDay=" + endDay
835 new ObjectStreamField("endMonth", int.class),
855 cal.set(Calendar.MONTH, endMonth);
876 fields.put("endMonth", endMonth);
904 endMonth = fields.get("endMonth", 0);