Searched refs:isDst (Results 1 – 3 of 3) sorted by relevance
/libcore/luni/src/main/java/libcore/util/ |
D | ZoneInfo.java | 266 byte isDst = it.readByte(); in readTimeZone() 267 if (isDst != 0 && isDst != 1) { in readTimeZone() 268 throw new IOException(id + " dst at " + i + " is not 0 or 1, is " + isDst); in readTimeZone() 270 isDsts[i] = isDst; in readTimeZone() 748 private int isDst; field in ZoneInfo.WallTime 770 byte isDst; in localtime() 772 isDst = 0; in localtime() 781 isDst = 0; in localtime() 784 isDst = zoneInfo.mIsDsts[offsetIndex]; in localtime() 794 this.isDst = isDst; in localtime() [all …]
|
/libcore/luni/src/main/java/libcore/timezone/ |
D | CountryTimeZones.java | 374 public OffsetResult lookupByOffsetWithBias(int offsetMillis, boolean isDst, long whenMillis, in lookupByOffsetWithBias() argument 386 if (!offsetMatchesAtTime(match, offsetMillis, isDst, whenMillis)) { in lookupByOffsetWithBias() 414 private static boolean offsetMatchesAtTime(TimeZone timeZone, int offsetMillis, boolean isDst, in offsetMatchesAtTime() argument 421 if (isDst != zoneIsDst) { in offsetMatchesAtTime()
|
D | TimeZoneFinder.java | 205 String countryIso, int offsetMillis, boolean isDst, long whenMillis, TimeZone bias) { in lookupTimeZoneByCountryAndOffset() argument 212 countryTimeZones.lookupByOffsetWithBias(offsetMillis, isDst, whenMillis, bias); in lookupTimeZoneByCountryAndOffset()
|