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,
223 setEndRule(endMonth, endDay, endDayOfWeek, endTime);
255 * @param endMonth
274 int endMonth, int endDay, int endDayOfWeek, int endTime,
278 endMonth, endDay, endDayOfWeek, endTime, daylightSavings);
320 && startTime == tz.startTime && endMonth == tz.endMonth
347 if (endMonth < startMonth) {
348 if (month > endMonth && month < startMonth) {
352 if (month < startMonth || month > endMonth) {
401 if (month == endMonth || (ruleTime < 0 && nextMonth == endMonth)) {
411 daysInMonth = GregorianCalendar.DaysInMonth[endMonth];
412 if (endMonth == Calendar.FEBRUARY && isLeapYear(year)) {
437 int ruleMonth = endMonth;
492 + startTime + startMode + endMonth + endDay + endDayOfWeek
514 && startTime == tz.startTime && endMonth == tz.endMonth
583 checkRange(endMonth, endMode == DOM_MODE ? 1 : endDayOfWeek,
586 checkDay(endMonth, endDay);
611 endMonth = month;
634 endMonth = month;
658 endMonth = month;
813 + endMode + ",endMonth=" + endMonth + ",endDay=" + endDay
829 new ObjectStreamField("endMonth", int.class),
849 cal.set(Calendar.MONTH, endMonth);
870 fields.put("endMonth", endMonth);
898 endMonth = fields.get("endMonth", 0);