Home
last modified time | relevance | path

Searched refs:timeByte (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/time/zone/
DZoneOffsetTransitionRule.java305 final int timeByte = (timeSecs % 3600 == 0 ? (timeEndOfDay ? 24 : time.getHour()) : 31); in writeExternal() local
313 (timeByte << 14) + // 5 bits in writeExternal()
319 if (timeByte == 31) { in writeExternal()
346 int timeByte = (data & (31 << 14)) >>> 14; in readExternal() local
351 …LocalTime time = (timeByte == 31 ? LocalTime.ofSecondOfDay(in.readInt()) : LocalTime.of(timeByte %… in readExternal()
355 …return ZoneOffsetTransitionRule.of(month, dom, dow, time, timeByte == 24, defn, std, before, after… in readExternal()