Lines Matching refs:startTime

169      * Both <code>startTime</code> and <code>endTime</code> are specified to be
179 * startTime,
198 * @param startTime The daylight saving time starting time in local wall clock
215 int startMonth, int startDay, int startDayOfWeek, int startTime,
219 startMonth, startDay, startDayOfWeek, startTime, WALL_TIME,
228 * Both <code>startTime</code> and <code>endTime</code> are assumed to be
236 * startTime,
255 * @param startTime The daylight saving time starting time in local wall clock
273 int startMonth, int startDay, int startDayOfWeek, int startTime,
278 startMonth, startDay, startDayOfWeek, startTime, WALL_TIME,
288 * parameters, including modes of <code>startTime</code> and
302 * @param startTime The daylight saving time starting time in the time mode
304 * @param startTimeMode The mode of the start time specified by startTime.
330 int startTime, int startTimeMode,
340 this.startTime = startTime;
380 * @param startTime The daylight saving time starting time in local wall clock
383 * <code>startDayOfWeek</code>, or <code>startTime</code> parameters are out of range
385 public void setStartRule(int startMonth, int startDay, int startDayOfWeek, int startTime)
390 this.startTime = startTime;
399 * <pre><code>setStartRule(startMonth, startDay, 0, startTime)</code></pre>
405 * @param startTime The daylight saving time starting time in local wall clock
409 * <code>startDayOfMonth</code>, or <code>startTime</code> parameters are out of range
412 public void setStartRule(int startMonth, int startDay, int startTime) {
413 setStartRule(startMonth, startDay, 0, startTime);
425 * @param startTime The daylight saving time starting time in local wall clock
432 * <code>startDayOfWeek</code>, or <code>startTime</code> parameters are out of range
436 int startTime, boolean after)
440 setStartRule(startMonth, startDay, -startDayOfWeek, startTime);
442 setStartRule(startMonth, -startDay, -startDayOfWeek, startTime);
725 int time = startTime;
880 return startMonth ^ startDay ^ startDayOfWeek ^ startTime ^
930 startTime == that.startTime &&
956 ",startTime=" + startTime +
1020 private int startTime;
1023 * The format of startTime, either WALL_TIME, STANDARD_TIME, or UTC_TIME.
1386 if (startTime < 0 || startTime > millisPerDay) {
1388 "Illegal start time " + startTime);
1537 startTime += rawOffset;
1540 while (startTime < 0) {
1541 startTime += millisPerDay;
1544 while (startTime >= millisPerDay) {
1545 startTime -= millisPerDay;
1609 times[0] = startTime;
1619 startTime = times[0];