Lines Matching refs:endTime

169      * Both <code>startTime</code> and <code>endTime</code> are specified to be
184 * endTime,
208 * @param endTime The daylight saving ending time in local wall clock time,
216 int endMonth, int endDay, int endDayOfWeek, int endTime)
220 endMonth, endDay, endDayOfWeek, endTime, WALL_TIME,
228 * Both <code>startTime</code> and <code>endTime</code> are assumed to be
241 * endTime,
264 * @param endTime The daylight saving ending time in local wall clock time,
274 int endMonth, int endDay, int endDayOfWeek, int endTime,
279 endMonth, endDay, endDayOfWeek, endTime, WALL_TIME,
289 * <code>endTime</code>. The mode specifies either {@link #WALL_TIME wall
312 * @param endTime The daylight saving ending time in time time mode
314 * @param endTimeMode The mode of the end time specified by endTime
332 int endTime, int endTimeMode,
345 this.endTime = endTime;
459 * @param endTime The daylight saving ending time in local wall clock time,
463 * <code>endDayOfWeek</code>, or <code>endTime</code> parameters are out of range
466 int endTime)
471 this.endTime = endTime;
480 * <pre><code>setEndRule(endMonth, endDay, 0, endTime)</code></pre>
486 * @param endTime The daylight saving ending time in local wall clock time,
490 * or <code>endTime</code> parameters are out of range
493 public void setEndRule(int endMonth, int endDay, int endTime)
495 setEndRule(endMonth, endDay, 0, endTime);
507 * @param endTime The daylight saving ending time in local wall clock time,
515 * <code>endDayOfWeek</code>, or <code>endTime</code> parameters are out of range
518 public void setEndRule(int endMonth, int endDay, int endDayOfWeek, int endTime, boolean after)
521 setEndRule(endMonth, endDay, -endDayOfWeek, endTime);
523 setEndRule(endMonth, -endDay, -endDayOfWeek, endTime);
734 int time = endTime;
881 endMonth ^ endDay ^ endDayOfWeek ^ endTime ^ rawOffset;
936 endTime == that.endTime &&
962 ",endTime=" + endTime +
1081 private int endTime;
1084 * The format of endTime, either <code>WALL_TIME</code>,
1433 if (endTime < 0 || endTime > millisPerDay) {
1435 "Illegal end time " + endTime);
1551 endTime += rawOffset + dstSavings;
1554 endTime += dstSavings;
1556 while (endTime < 0) {
1557 endTime += millisPerDay;
1560 while (endTime >= millisPerDay) {
1561 endTime -= millisPerDay;
1610 times[1] = endTime;
1620 endTime = times[1];