HomeSort by relevance Sort by last modified time
    Searched refs:timeZones (Results 1 - 5 of 5) sorted by null

  /cts/tests/tests/permission/src/android/permission/cts/
NoSystemFunctionPermissionTest.java 68 String[] timeZones = TimeZone.getAvailableIDs();
69 String timeZone = timeZones[0];
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/datetime/
ZoneGetter.java 78 // typically familiar with their local timezones and exemplar locations don't always match
94 final TimeZone[] timeZones = new TimeZone[zoneCount];
100 timeZones[i] = tz;
116 TimeZone tz = timeZones[i];
133 TimeZone tz = timeZones[i];
172 try (XmlResourceParser xrp = context.getResources().getXml(R.xml.timezones)) {
194 Log.e(TAG, "Ill-formatted timezones.xml file");
196 Log.e(TAG, "Unable to read timezones.xml file");
  /packages/apps/DeskClock/src/com/android/deskclock/settings/
SettingsActivity.java 206 final CharSequence[][] timezones = getAllTimezones(); local
208 homeTimezonePref.setEntryValues(timezones[0]);
209 homeTimezonePref.setEntries(timezones[1]);
234 final List<TimeZoneRow> timezones = new ArrayList<>(minLength); local
236 timezones.add(new TimeZoneRow(ids[i], labels[i], currentTimeMillis));
238 Collections.sort(timezones);
240 final CharSequence[][] timeZones = new CharSequence[2][timezones.size()];
242 for (TimeZoneRow row : timezones) {
243 timeZones[0][i] = row.mId
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
SerializableTest.java 470 OlsonTimeZone timeZones[] = new OlsonTimeZone[zoneIDs.length];
473 timeZones[i] = new OlsonTimeZone(zoneIDs[i]);
476 return timeZones;
504 TimeZoneAdapter timeZones[] = new TimeZoneAdapter[zoneIDs.length];
507 timeZones[i] = new TimeZoneAdapter(TimeZone.getTimeZone(zoneIDs[i]));
510 return timeZones;
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
SerializableTest.java 466 OlsonTimeZone timeZones[] = new OlsonTimeZone[zoneIDs.length];
469 timeZones[i] = new OlsonTimeZone(zoneIDs[i]);
472 return timeZones;
500 TimeZoneAdapter timeZones[] = new TimeZoneAdapter[zoneIDs.length];
503 timeZones[i] = new TimeZoneAdapter(TimeZone.getTimeZone(zoneIDs[i]));
506 return timeZones;
    [all...]

Completed in 3103 milliseconds