Home | History | Annotate | Download | only in util

Lines Matching defs:ONE_WEEK

1181      * ONE_WEEK can fit into ints, they must be longs in order to prevent
1188 * ONE_WEEK can fit into ints, they must be longs in order to prevent
1191 protected static final long ONE_WEEK = 7*ONE_DAY;
3025 time = (time + delta - min2) % ONE_WEEK;
3026 if (time < 0) time += ONE_WEEK;
3035 long delta = amount * ONE_WEEK; // Scale up from weeks to millis
3044 long min2 = time - preWeeks * ONE_WEEK;
3045 long gap2 = ONE_WEEK * (preWeeks + postWeeks + 1); // Must add 1!
3187 delta *= ONE_WEEK;