Home | History | Annotate | Download | only in util

Lines Matching defs:offsets

308      * if it has the same offsets as all other zones used by the country <em>at the specified time
334 // Multiple different offsets means the default should not be used.
396 int[] offsets = new int[2];
397 timeZone.getOffset(whenMillis, false /* local */, offsets);
399 // offsets[1] == 0 when the zone is not in DST.
400 boolean zoneIsDst = offsets[1] != 0;
404 return offsetMillis == (offsets[0] + offsets[1]);
460 int[] offsets = new int[2];
461 timeZone.getOffset(whenMillis, false /* local */, offsets);
464 if (dstOffsetMillis.intValue() != offsets[1]) {
468 return offsetMillis == (offsets[0] + offsets[1]);