Home | History | Annotate | Download | only in format

Lines Matching refs:tzids

132         String[] tzids;
134 tzids = java.util.TimeZone.getAvailableIDs();
136 tzids = TimeZone.getAvailableIDs();
151 for (int tzidx = 0; tzidx < tzids.length; tzidx++) {
152 if (EXCL_TZ_PATTERN.matcher(tzids[tzidx]).matches()) {
155 TimeZone tz = TimeZone.getTimeZone(tzids[tzidx]);
183 String canonicalID = TimeZone.getCanonicalID(tzids[tzidx]);
189 logln("Canonical round trip failed (probably as expected); tz=" + tzids[tzidx]
195 errln("Canonical round trip failed; tz=" + tzids[tzidx]
203 if (!outtz.getID().equals(tzids[tzidx])) {
204 errln("Zone ID round trip failed; tz=" + tzids[tzidx]
212 String canonicalID = TimeZone.getCanonicalID(tzids[tzidx]);
217 boolean hasNoLocation = TimeZone.getRegion(tzids[tzidx]).equals("001");
222 errln("Canonical round trip failed; tz=" + tzids[tzidx]
227 logln("Canonical round trip failed (as expected); tz=" + tzids[tzidx]
263 errln("Offset round trip failed; tz=" + tzids[tzidx]
271 if (JDKTZ && tzids[tzidx].startsWith("SystemV/")) {
275 logln("Raw offset round trip failed; tz=" + tzids[tzidx]
282 errln("Raw offset round trip failed; tz=" + tzids[tzidx]