Lines Matching defs:startDay

177      *                    startDay,
194 * @param startDay The day of the month on which the daylight saving time starts.
215 int startMonth, int startDay, int startDayOfWeek, int startTime,
219 startMonth, startDay, startDayOfWeek, startTime, WALL_TIME,
234 * startDay,
251 * @param startDay The day of the month on which the daylight saving time starts.
273 int startMonth, int startDay, int startDayOfWeek, int startTime,
278 startMonth, startDay, startDayOfWeek, startTime, WALL_TIME,
298 * @param startDay The day of the month on which the daylight saving time starts.
329 int startMonth, int startDay, int startDayOfWeek,
338 this.startDay = startDay;
376 * @param startDay The day of the month on which the daylight saving time starts.
382 * @exception IllegalArgumentException if the <code>startMonth</code>, <code>startDay</code>,
385 public void setStartRule(int startMonth, int startDay, int startDayOfWeek, int startTime)
388 this.startDay = startDay;
399 * <pre><code>setStartRule(startMonth, startDay, 0, startTime)</code></pre>
404 * @param startDay The day of the month on which the daylight saving time starts.
412 public void setStartRule(int startMonth, int startDay, int startTime) {
413 setStartRule(startMonth, startDay, 0, startTime);
423 * @param startDay The day of the month on which the daylight saving time starts.
431 * @exception IllegalArgumentException if the <code>startMonth</code>, <code>startDay</code>,
435 public void setStartRule(int startMonth, int startDay, int startDayOfWeek,
440 setStartRule(startMonth, startDay, -startDayOfWeek, startTime);
442 setStartRule(startMonth, -startDay, -startDayOfWeek, startTime);
729 return getTransition(cal, cdate, startMode, year, startMonth, startDay,
880 return startMonth ^ startDay ^ startDayOfWeek ^ startTime ^
928 startDay == that.startDay &&
954 ",startDay=" + startDay +
983 * <code>startDay</code> indicates the day of the month of
990 * <code>startDay</code> indicates which <code>startDayOfWeek</code> in the
1001 private int startDay;
1153 * <code>startDay</code> field.
1307 // startDay The day of the month, or for DOW_IN_MONTH mode, a
1318 // MODE startMonth startDay startDayOfWeek
1340 * Given a set of encoded rules in startDay and startDayOfMonth, decode
1346 * This method also recognizes a startDay or endDay of zero as indicating
1380 useDaylight = (startDay != 0) && (endDay != 0);
1381 if (startDay != 0) {
1397 if (startDay > 0) {
1400 startDay = -startDay;
1410 if (startDay < -5 || startDay > 5) {
1412 "Illegal start day of week in month " + startDay);
1414 } else if (startDay < 1 || startDay > staticMonthLength[startMonth]) {
1416 "Illegal start day " + startDay);
1427 useDaylight = (startDay != 0) && (endDay != 0);
1481 startDay = 1 + (startDay / 7);
1488 if (startDay != 1) {
1489 startDay = 1 + (startDay / 7);
1494 if (startDay >= 30) {
1495 startDay = -1;
1497 startDay = 1 + (startDay / 7);
1573 rules[0] = (byte)startDay;
1591 startDay = rules[0];
1633 * the fields <code>startDay</code>, <code>startDayOfWeek</code>,