Home | History | Annotate | Download | only in time

Lines Matching defs:SECONDS_PER_DAY

177     static final int SECONDS_PER_DAY = SECONDS_PER_HOUR * HOURS_PER_DAY;
181 static final long MILLIS_PER_DAY = SECONDS_PER_DAY * 1000L;
185 static final long MICROS_PER_DAY = SECONDS_PER_DAY * 1000_000L;
273 int secsOfDay = (int) Math.floorMod(localSecond, SECONDS_PER_DAY);
948 if (unitDur.getSeconds() > SECONDS_PER_DAY) {
1116 int newSofd = ((int) (secondstoAdd % SECONDS_PER_DAY) + sofd + SECONDS_PER_DAY) % SECONDS_PER_DAY;
1246 return plusSeconds(-(secondsToSubtract % SECONDS_PER_DAY));