/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/javaspi/util/ |
D | TimeZoneNameProviderICU.java | 25 …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/ |
D | TimeZoneNameTest.java | 98 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/ |
D | tznames_impl.cpp | 696 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 …]
|
D | tznames.cpp | 152 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()
|
D | Android.mk | 106 tzgnames.cpp tznames.cpp tznames_impl.cpp \
|
D | Makefile.in | 95 decNumber.o decContext.o alphaindex.o tznames.o tznames_impl.o tzgnames.o \
|
D | tzfmt.cpp | 520 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()
|
D | timezone.cpp | 1265 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/ |
D | TimeZoneNamesImpl.java | 323 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()
|
D | TimeZoneGenericNames.java | 135 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/ |
D | DateFormatSymbols.java | 1311 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()
|
D | TimeZoneFormat.java | 565 public TimeZoneFormat setTimeZoneNames(TimeZoneNames tznames) { in setTimeZoneNames() argument 569 _tznames = tznames; in setTimeZoneNames()
|
/external/icu/icu4c/source/i18n/unicode/ |
D | tzfmt.h | 335 void adoptTimeZoneNames(TimeZoneNames *tznames); 342 void setTimeZoneNames(const TimeZoneNames &tznames);
|
/external/icu/icu4c/source/test/hdrtst/ |
D | cxxfiles.txt | 97 tznames.h
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | TimeZone.java | 586 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/ |
D | dependencies.txt | 836 tzfmt.o tzgnames.o tznames.o tznames_impl.o
|