Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/time/zone/
DZoneOffsetTransitionRule.java309 final int dowByte = (dow == null ? 0 : dow.getValue()); in writeExternal() local
312 (dowByte << 19) + // 3 bits in writeExternal()
344 int dowByte = (data & (7 << 19)) >>> 19; in readExternal() local
345 DayOfWeek dow = dowByte == 0 ? null : DayOfWeek.of(dowByte); in readExternal()