Searched refs:ZoneNode (Results 1 – 1 of 1) sorted by relevance
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/ |
D | CountryZoneTree.java | 44 private interface ZoneNodeVisitor extends TreeNode.Visitor<ZoneNode> {} 47 private static class ZoneNode extends TreeNode<ZoneNode> { class in CountryZoneTree 56 ZoneNode(String id, List<ZoneInfo> zoneInfos, int periodOffset, int periodCount) { in ZoneNode() method in CountryZoneTree.ZoneNode 131 private final ZoneNode root; 136 String countryIso, ZoneNode root, Instant startInclusive, Instant endExclusive) { in CountryZoneTree() 337 ZoneNode root = new ZoneNode("0", zoneInfos, 0, 0); in create() 367 private static void growTree(ZoneNode root) { in growTree() 404 ZoneNode e = new ZoneNode(childId, newSet, newPeriodOffset, 1 /* periodCount */); in growTree() 425 private static void compressTree(ZoneNode root) { in compressTree() 429 public void visit(ZoneNode node) { in compressTree() [all …]
|