Home
last modified time | relevance | path

Searched refs:timeZoneNames (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Settings/src/com/android/settings/datetime/timezone/
DTimeZoneInfo.java153 final TimeZoneNames timeZoneNames = mTimeZoneFormat.getTimeZoneNames(); in format() local
158 .setGenericName(timeZoneNames.getDisplayName(id, in format()
160 .setStandardName(timeZoneNames.getDisplayName(id, in format()
162 .setDaylightName(timeZoneNames.getDisplayName(id, in format()
164 .setExemplarLocation(timeZoneNames.getExemplarLocationName(id)) in format()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/datetime/timezone/
DTimeZoneInfo.java153 final TimeZoneNames timeZoneNames = mTimeZoneFormat.getTimeZoneNames(); in format() local
158 .setGenericName(timeZoneNames.getDisplayName(id, in format()
160 .setStandardName(timeZoneNames.getDisplayName(id, in format()
162 .setDaylightName(timeZoneNames.getDisplayName(id, in format()
164 .setExemplarLocation(timeZoneNames.getExemplarLocationName(id)) in format()
/packages/apps/DeskClock/src/com/android/deskclock/data/
DSettingsDAO.java321 final String[] timeZoneNames = resources.getStringArray(R.array.timezone_labels); in getTimeZones() local
324 if (timeZoneIds.length != timeZoneNames.length) { in getTimeZones()
327 timeZoneIds.length, timeZoneNames.length, locale); in getTimeZones()
335 final String name = timeZoneNames[i].replaceAll("\"", ""); in getTimeZones()
DTimeZones.java29 TimeZones(CharSequence[] timeZoneIds, CharSequence[] timeZoneNames) { in TimeZones() argument
31 mTimeZoneNames = timeZoneNames; in TimeZones()