Lines Matching defs:seconds
76 private int seconds;
259 return seconds;
262 public CalendarDate setSeconds(int seconds) {
263 if (this.seconds != seconds) {
264 this.seconds = seconds;
272 seconds += n;
319 public CalendarDate setTimeOfDay(int hours, int minutes, int seconds, int millis) {
322 setSeconds(seconds);
327 public CalendarDate addTimeOfDay(int hours, int minutes, int seconds, int millis) {
330 addSeconds(seconds);
406 && seconds == that.seconds
415 hash = ((((((hash + hours) * 60) + minutes) * 60) + seconds) * 1000) + millis;
458 CalendarUtils.sprintf0d(sb, seconds, 2).append('.');