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

  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/datetime/
ZoneGetter.java 92 for (String olsonId : TimeZoneNames.forLocale(locale)) {
93 localZoneIds.add(olsonId);
100 for (String olsonId : olsonIdsToDisplay) {
101 if (localZoneIds.contains(olsonId)) {
102 TimeZone tz = TimeZone.getTimeZone(olsonId);
114 for (String olsonId : olsonIdsToDisplay) {
115 final TimeZone tz = TimeZone.getTimeZone(olsonId);
117 // name is when the olsonId is local AND long names are not ambiguous.
118 boolean isLocalZoneId = localZoneIds.contains(olsonId);
180 String olsonId = xrp.getAttributeValue(0)
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
DateIntervalFormat.java 45 public static String formatDateRange(long startMs, long endMs, int flags, String olsonId) {
47 olsonId = "UTC";
51 TimeZone tz = (olsonId != null) ? TimeZone.getTimeZone(olsonId) : TimeZone.getDefault();

Completed in 329 milliseconds