Home
last modified time | relevance | path

Searched refs:tznames (Results 1 – 16 of 16) sorted by relevance

/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/javaspi/util/
DTimeZoneNameProviderICU.java25 …TimeZoneNames tznames = TimeZoneNames.getInstance(ICULocaleServiceProvider.toULocaleNoSpecialVaria… in getDisplayName() local
30 String lstd = tznames.getDisplayName(canonicalID, NameType.LONG_STANDARD, date); in getDisplayName()
31 String ldst = tznames.getDisplayName(canonicalID, NameType.LONG_DAYLIGHT, date); in getDisplayName()
32 String sstd = tznames.getDisplayName(canonicalID, NameType.SHORT_STANDARD, date); in getDisplayName()
33 String sdst = tznames.getDisplayName(canonicalID, NameType.SHORT_DAYLIGHT, date); in getDisplayName()
/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
DTimeZoneNameTest.java98 TimeZoneNames tznames = TimeZoneNames.getInstance(ULocale.forLocale(loc)); in getIcuDisplayName() local
102 tznames.getDisplayName(canonicalID, NameType.LONG_DAYLIGHT, date) : in getIcuDisplayName()
103 tznames.getDisplayName(canonicalID, NameType.LONG_STANDARD, date); in getIcuDisplayName()
107 tznames.getDisplayName(canonicalID, NameType.SHORT_DAYLIGHT, date) : in getIcuDisplayName()
108 tznames.getDisplayName(canonicalID, NameType.SHORT_STANDARD, date); in getIcuDisplayName()
/external/icu/icu4c/source/i18n/
Dtznames_impl.cpp696 TZNames* tznames = NULL; in createInstance() local
698 tznames = new TZNames(names); in createInstance()
699 if (tznames == NULL) { in createInstance()
704 tznames->fLocationName = locationName; in createInstance()
705 tznames->fLocationNameOwned = locationNameOwned; in createInstance()
708 return tznames; in createInstance()
1134 TZNames *tznames = NULL; in getTimeZoneDisplayName() local
1139 tznames = nonConstThis->loadTimeZoneNames(tzID); in getTimeZoneDisplayName()
1143 if (tznames != NULL) { in getTimeZoneDisplayName()
1144 const UChar *s = tznames->getName(type); in getTimeZoneDisplayName()
[all …]
Dtznames.cpp152 TimeZoneNames *tznames = NULL; in TimeZoneNamesDelegate() local
155 tznames = new TimeZoneNamesImpl(locale, status); in TimeZoneNamesDelegate()
156 if (tznames == NULL) { in TimeZoneNamesDelegate()
172 cacheEntry->names = tznames; in TimeZoneNamesDelegate()
180 if (tznames != NULL) { in TimeZoneNamesDelegate()
181 delete tznames; in TimeZoneNamesDelegate()
DAndroid.mk106 tzgnames.cpp tznames.cpp tznames_impl.cpp \
DMakefile.in95 decNumber.o decContext.o alphaindex.o tznames.o tznames_impl.o tzgnames.o \
Dtzfmt.cpp520 TimeZoneFormat::adoptTimeZoneNames(TimeZoneNames *tznames) { in adoptTimeZoneNames() argument
522 fTimeZoneNames = tznames; in adoptTimeZoneNames()
528 TimeZoneFormat::setTimeZoneNames(const TimeZoneNames &tznames) { in setTimeZoneNames() argument
530 fTimeZoneNames = tznames.clone(); in setTimeZoneNames()
Dtimezone.cpp1265 LocalPointer<TimeZoneNames> tznames(TimeZoneNames::createInstance(locale, status)); in getDisplayName() local
1271 tznames->getDisplayName(canonicalID, nameType, date, result); in getDisplayName()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTimeZoneNamesImpl.java323 TZNames tznames = _tzNamesMap.get(tzID); in loadTimeZoneNames() local
324 if (tznames == null) { in loadTimeZoneNames()
325 tznames = TZNames.getInstance(_zoneStrings, tzID.replace('/', ':'), tzID); in loadTimeZoneNames()
329 String name = tznames.getName(t); in loadTimeZoneNames()
337 TZNames tmpTznames = _tzNamesMap.putIfAbsent(tzID, tznames); in loadTimeZoneNames()
338 tznames = (tmpTznames == null) ? tznames : tmpTznames; in loadTimeZoneNames()
340 return tznames; in loadTimeZoneNames()
DTimeZoneGenericNames.java135 public TimeZoneGenericNames(ULocale locale, TimeZoneNames tznames) { in TimeZoneGenericNames() argument
137 _tznames = tznames; in TimeZoneGenericNames()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDateFormatSymbols.java1311 TimeZoneNames tznames = TimeZoneNames.getInstance(validLocale); in getZoneStrings() local
1321 array[i][1] = tznames.getDisplayName(canonicalID, NameType.LONG_STANDARD, now); in getZoneStrings()
1322 array[i][2] = tznames.getDisplayName(canonicalID, NameType.SHORT_STANDARD, now); in getZoneStrings()
1323 array[i][3] = tznames.getDisplayName(canonicalID, NameType.LONG_DAYLIGHT, now); in getZoneStrings()
1324 array[i][4] = tznames.getDisplayName(canonicalID, NameType.SHORT_DAYLIGHT, now); in getZoneStrings()
DTimeZoneFormat.java565 public TimeZoneFormat setTimeZoneNames(TimeZoneNames tznames) { in setTimeZoneNames() argument
569 _tznames = tznames; in setTimeZoneNames()
/external/icu/icu4c/source/i18n/unicode/
Dtzfmt.h335 void adoptTimeZoneNames(TimeZoneNames *tznames);
342 void setTimeZoneNames(const TimeZoneNames &tznames);
/external/icu/icu4c/source/test/hdrtst/
Dcxxfiles.txt97 tznames.h
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DTimeZone.java586 TimeZoneNames tznames = TimeZoneNames.getInstance(locale); in _getDisplayName() local
597 result = tznames.getDisplayName(ZoneMeta.getCanonicalCLDRID(this), nameType, date); in _getDisplayName()
/external/icu/icu4c/source/test/depstest/
Ddependencies.txt836 tzfmt.o tzgnames.o tznames.o tznames_impl.o