Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/javaspi/util/
DTimeZoneNameProviderICU.java27 …TimeZoneNames tznames = TimeZoneNames.getInstance(ICULocaleServiceProvider.toULocaleNoSpecialVaria… in getDisplayName() local
32 String lstd = tznames.getDisplayName(canonicalID, NameType.LONG_STANDARD, date); in getDisplayName()
33 String ldst = tznames.getDisplayName(canonicalID, NameType.LONG_DAYLIGHT, date); in getDisplayName()
34 String sstd = tznames.getDisplayName(canonicalID, NameType.SHORT_STANDARD, date); in getDisplayName()
35 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.java103 TimeZoneNames tznames = TimeZoneNames.getInstance(ULocale.forLocale(loc)); in getIcuDisplayName() local
107 tznames.getDisplayName(canonicalID, NameType.LONG_DAYLIGHT, date) : in getIcuDisplayName()
108 tznames.getDisplayName(canonicalID, NameType.LONG_STANDARD, date); in getIcuDisplayName()
112 tznames.getDisplayName(canonicalID, NameType.SHORT_DAYLIGHT, date) : in getIcuDisplayName()
113 tznames.getDisplayName(canonicalID, NameType.SHORT_STANDARD, date); in getIcuDisplayName()
/external/icu/icu4c/source/i18n/
Dtznames.cpp157 TimeZoneNames *tznames = NULL; in TimeZoneNamesDelegate() local
160 tznames = new TimeZoneNamesImpl(locale, status); in TimeZoneNamesDelegate()
161 if (tznames == NULL) { in TimeZoneNamesDelegate()
177 cacheEntry->names = tznames; in TimeZoneNamesDelegate()
185 if (tznames != NULL) { in TimeZoneNamesDelegate()
186 delete tznames; in TimeZoneNamesDelegate()
Dtznames_impl.cpp1235 ZNames *tznames = NULL; in getTimeZoneDisplayName() local
1241 tznames = nonConstThis->loadTimeZoneNames(tzID, status); in getTimeZoneDisplayName()
1245 if (tznames != NULL) { in getTimeZoneDisplayName()
1246 const UChar *s = tznames->getName(type); in getTimeZoneDisplayName()
1258 ZNames *tznames = NULL; in getExemplarLocationName() local
1264 tznames = nonConstThis->loadTimeZoneNames(tzID, status); in getExemplarLocationName()
1268 if (tznames != NULL) { in getExemplarLocationName()
1269 locName = tznames->getName(UTZNM_EXEMPLAR_LOCATION); in getExemplarLocationName()
1336 void *tznames = uhash_get(fTZNamesMap, tzIDKey); in loadTimeZoneNames() local
1337 if (tznames == NULL) { in loadTimeZoneNames()
[all …]
DMakefile.in98 decNumber.o decContext.o alphaindex.o tznames.o tznames_impl.o tzgnames.o \
Dtzfmt.cpp526 TimeZoneFormat::adoptTimeZoneNames(TimeZoneNames *tznames) { in adoptTimeZoneNames() argument
528 fTimeZoneNames = tznames; in adoptTimeZoneNames()
534 TimeZoneFormat::setTimeZoneNames(const TimeZoneNames &tznames) { in setTimeZoneNames() argument
536 fTimeZoneNames = tznames.clone(); in setTimeZoneNames()
Dtimezone.cpp1268 LocalPointer<TimeZoneNames> tznames(TimeZoneNames::createInstance(locale, status)); in getDisplayName() local
1274 tznames->getDisplayName(canonicalID, nameType, date, result); in getDisplayName()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DTimeZoneFormatTest.java1154 TimeZoneNames tznames = TimeZoneNames.getInstance(uloc); in TestGetDisplayNames() local
1155 tznames.loadAllDisplayNames(); in TestGetDisplayNames()
1157 tznames.getDisplayNames(zone, types, date, result, 0); in TestGetDisplayNames()
1161 String actual = tznames.getDisplayName(zone, type, date); in TestGetDisplayNames()
1166 tznames.getDisplayNames(null, null, 0, null, 0); in TestGetDisplayNames()
1171 TimeZoneNames tznames = new TZDBTimeZoneNames(uloc); in TestGetDisplayNames() local
1172 tznames.loadAllDisplayNames(); in TestGetDisplayNames()
1174 tznames.getDisplayNames(zone, types, date, result, 0); in TestGetDisplayNames()
1178 String actual = tznames.getDisplayName(zone, type, date); in TestGetDisplayNames()
1183 tznames.getDisplayNames(null, null, 0, null, 0); in TestGetDisplayNames()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DTimeZoneFormatTest.java1157 TimeZoneNames tznames = TimeZoneNames.getInstance(uloc); in TestGetDisplayNames() local
1158 tznames.loadAllDisplayNames(); in TestGetDisplayNames()
1160 tznames.getDisplayNames(zone, types, date, result, 0); in TestGetDisplayNames()
1164 String actual = tznames.getDisplayName(zone, type, date); in TestGetDisplayNames()
1169 tznames.getDisplayNames(null, null, 0, null, 0); in TestGetDisplayNames()
1174 TimeZoneNames tznames = new TZDBTimeZoneNames(uloc); in TestGetDisplayNames() local
1175 tznames.loadAllDisplayNames(); in TestGetDisplayNames()
1177 tznames.getDisplayNames(zone, types, date, result, 0); in TestGetDisplayNames()
1181 String actual = tznames.getDisplayName(zone, type, date); in TestGetDisplayNames()
1186 tznames.getDisplayNames(null, null, 0, null, 0); in TestGetDisplayNames()
/external/icu/icu4c/source/i18n/unicode/
Dtzfmt.h334 void adoptTimeZoneNames(TimeZoneNames *tznames);
341 void setTimeZoneNames(const TimeZoneNames &tznames);
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DTimeZoneNamesImpl.java500 ZNames tznames = _tzNamesMap.get(tzID); in loadTimeZoneNames() local
501 if (tznames == null) { in loadTimeZoneNames()
504 tznames = ZNames.createTimeZoneAndPutInCache(_tzNamesMap, loader.getNames(), tzID); in loadTimeZoneNames()
506 return tznames; in loadTimeZoneNames()
DTimeZoneGenericNames.java141 public TimeZoneGenericNames(ULocale locale, TimeZoneNames tznames) { in TimeZoneGenericNames() argument
143 _tznames = tznames; in TimeZoneGenericNames()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTimeZoneNamesImpl.java498 ZNames tznames = _tzNamesMap.get(tzID); in loadTimeZoneNames() local
499 if (tznames == null) { in loadTimeZoneNames()
502 tznames = ZNames.createTimeZoneAndPutInCache(_tzNamesMap, loader.getNames(), tzID); in loadTimeZoneNames()
504 return tznames; in loadTimeZoneNames()
DTimeZoneGenericNames.java137 public TimeZoneGenericNames(ULocale locale, TimeZoneNames tznames) { in TimeZoneGenericNames() argument
139 _tznames = tznames; in TimeZoneGenericNames()
/external/icu/icu4c/source/test/hdrtst/
Dcxxfiles.txt108 tznames.h
/external/icu/android_icu4j/src/main/java/android/icu/util/
DTimeZone.java522 TimeZoneNames tznames = TimeZoneNames.getInstance(locale); in _getDisplayName() local
533 result = tznames.getDisplayName(ZoneMeta.getCanonicalCLDRID(this), nameType, date); in _getDisplayName()
/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/android_icu4j/src/main/java/android/icu/text/
DDateFormatSymbols.java1334 TimeZoneNames tznames = TimeZoneNames.getInstance(validLocale); in getZoneStrings() local
1335 tznames.loadAllDisplayNames(); in getZoneStrings()
1349 tznames.getDisplayNames(canonicalID, types, now, array[i], 1); in getZoneStrings()
DTimeZoneFormat.java527 public TimeZoneFormat setTimeZoneNames(TimeZoneNames tznames) { in setTimeZoneNames() argument
531 _tznames = tznames; in setTimeZoneNames()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDateFormatSymbols.java1369 TimeZoneNames tznames = TimeZoneNames.getInstance(validLocale); in getZoneStrings() local
1370 tznames.loadAllDisplayNames(); in getZoneStrings()
1384 tznames.getDisplayNames(canonicalID, types, now, array[i], 1); in getZoneStrings()
DTimeZoneFormat.java568 public TimeZoneFormat setTimeZoneNames(TimeZoneNames tznames) { in setTimeZoneNames() argument
572 _tznames = tznames; in setTimeZoneNames()
/external/skia/third_party/icu/
Dicu.gni729 "$_src/i18n/tznames.cpp",
812 "$_src/i18n/unicode/tznames.h",
/external/icu/icu4c/source/test/depstest/
Ddependencies.txt978 tzfmt.o tzgnames.o tznames.o tznames_impl.o
/external/skqp/third_party/icu/
Dicu.gni631 "../externals/icu/source/i18n/tznames.cpp",