Searched refs:zones (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/util/
H A DTimeZoneNameUtility.java63 String[][] zones;
66 if (data == null || ((zones = data.get()) == null)) {
67 zones = loadZoneStrings(locale);
68 data = new SoftReference<String[][]>(zones);
72 return zones;
76 List<String[]> zones = new LinkedList<String[]>();
86 zones.add(names);
90 String[][] zonesArray = new String[zones.size()][];
91 return zones.toArray(zonesArray);
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DMappings.java70 Map<String,Zone> zones = zi.getZones();
72 for (String zoneName : zones.keySet()) {
73 Zone zone = zones.get(zoneName);
94 // Find the index to insert this raw offset zones
118 // excluded zones, add those names to the excluded list.
133 * excluded zones are not added to a per-RawOffset table.
162 // Remove zones, if any, from the list.
H A DZoneinfo.java60 private Map<String,Zone> zones; field in class:Zoneinfo
76 zones = new HashMap<String,Zone>();
87 zones.put(name, zone);
184 return zones;
192 return zones.get(name);
298 // custom time zones. Also, ignore "ROC" for
/openjdk7/jdk/test/java/text/Format/DateFormat/
H A DISO8601ZoneTest.java52 static final String[] zones = { field in class:ISO8601ZoneTest
126 for (String zone : zones) {
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DZoneView.java32 * ZoneView is a View implementation that creates zones for which
42 * zones for its children. The zones are special View implementations
45 * for. The zones don't create child views until an attempt is made
55 * divide them into zones in a reliable way.
68 * cause zones to never be unloaded. For simplicity, zones are created on
70 * responsible for. The zones can be any View implementation, but the
72 * large zones efficiently.
106 * size since zones ar
[all...]

Completed in 47 milliseconds