/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
D | ICUServiceTestSample.java | 63 Map names = HelloService.getDisplayNames(ULocale.US); in display() 191 public static Map getDisplayNames(ULocale locale) { in getDisplayNames() method in ICUServiceTestSample.HelloService 192 return getDisplayNames(registry(), locale); in getDisplayNames() 213 public static SortedMap getDisplayNames(ICUService service, ULocale locale) { in getDisplayNames() method in ICUServiceTestSample.HelloService 215 return service.getDisplayNames(locale, col, null); in getDisplayNames()
|
D | ICUServiceTest.java | 74 public SortedMap getDisplayNames(ICUService service) { in getDisplayNames() method in ICUServiceTest 77 return service.getDisplayNames(locale, col, null); in getDisplayNames() 85 public SortedMap getDisplayNames(ICUService service, ULocale locale) { in getDisplayNames() method in ICUServiceTest 87 return service.getDisplayNames(locale, col, null); in getDisplayNames() 94 public SortedMap getDisplayNames(ICUService service, ULocale locale, String matchID) { in getDisplayNames() method in ICUServiceTest 96 return service.getDisplayNames(locale, col, matchID); in getDisplayNames() 266 Map dids = getDisplayNames(service, ULocale.GERMANY); in TestAPI() 297 Map dids = getDisplayNames(service); in TestAPI() 423 logln("display names: " + getDisplayNames(service, new ULocale("es"), "es")); in TestAPI() 429 service.getDisplayNames(ULocale.US, new Comparator() { in TestAPI() [all …]
|
D | ICUServiceThreadTest.java | 73 public static SortedMap getDisplayNames(ICUService service, ULocale locale) { in getDisplayNames() method in ICUServiceThreadTest 82 return service.getDisplayNames(locale, col, null); in getDisplayNames() 281 Map names = getDisplayNames(service,locale); in iterate()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
D | ICUServiceTestSample.java | 66 Map names = HelloService.getDisplayNames(ULocale.US); in display() 194 public static Map getDisplayNames(ULocale locale) { in getDisplayNames() method in ICUServiceTestSample.HelloService 195 return getDisplayNames(registry(), locale); in getDisplayNames() 216 public static SortedMap getDisplayNames(ICUService service, ULocale locale) { in getDisplayNames() method in ICUServiceTestSample.HelloService 218 return service.getDisplayNames(locale, col, null); in getDisplayNames()
|
D | ICUServiceTest.java | 77 public SortedMap getDisplayNames(ICUService service) { in getDisplayNames() method in ICUServiceTest 80 return service.getDisplayNames(locale, col, null); in getDisplayNames() 88 public SortedMap getDisplayNames(ICUService service, ULocale locale) { in getDisplayNames() method in ICUServiceTest 90 return service.getDisplayNames(locale, col, null); in getDisplayNames() 97 public SortedMap getDisplayNames(ICUService service, ULocale locale, String matchID) { in getDisplayNames() method in ICUServiceTest 99 return service.getDisplayNames(locale, col, matchID); in getDisplayNames() 269 Map dids = getDisplayNames(service, ULocale.GERMANY); in TestAPI() 300 Map dids = getDisplayNames(service); in TestAPI() 426 logln("display names: " + getDisplayNames(service, new ULocale("es"), "es")); in TestAPI() 432 service.getDisplayNames(ULocale.US, new Comparator() { in TestAPI() [all …]
|
D | ICUServiceThreadTest.java | 76 public static SortedMap getDisplayNames(ICUService service, ULocale locale) { in getDisplayNames() method in ICUServiceThreadTest 85 return service.getDisplayNames(locale, col, null); in getDisplayNames() 284 Map names = getDisplayNames(service,locale); in iterate()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | ICUService.java | 641 public SortedMap<String, String> getDisplayNames() { in getDisplayNames() method in ICUService 643 return getDisplayNames(locale, null, null); in getDisplayNames() 650 public SortedMap<String, String> getDisplayNames(ULocale locale) { in getDisplayNames() method in ICUService 651 return getDisplayNames(locale, null, null); in getDisplayNames() 658 public SortedMap<String, String> getDisplayNames(ULocale locale, Comparator<Object> com) { in getDisplayNames() method in ICUService 659 return getDisplayNames(locale, com, null); in getDisplayNames() 666 public SortedMap<String, String> getDisplayNames(ULocale locale, String matchID) { in getDisplayNames() method in ICUService 667 return getDisplayNames(locale, null, matchID); in getDisplayNames() 680 …public SortedMap<String, String> getDisplayNames(ULocale locale, Comparator<Object> com, String ma… in getDisplayNames() method in ICUService
|
D | TimeZoneNamesImpl.java | 260 public void getDisplayNames(String tzID, NameType[] types, long date, in getDisplayNames() method in TimeZoneNamesImpl
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | ICUService.java | 646 public SortedMap<String, String> getDisplayNames() { in getDisplayNames() method in ICUService 648 return getDisplayNames(locale, null, null); in getDisplayNames() 655 public SortedMap<String, String> getDisplayNames(ULocale locale) { in getDisplayNames() method in ICUService 656 return getDisplayNames(locale, null, null); in getDisplayNames() 663 public SortedMap<String, String> getDisplayNames(ULocale locale, Comparator<Object> com) { in getDisplayNames() method in ICUService 664 return getDisplayNames(locale, com, null); in getDisplayNames() 671 public SortedMap<String, String> getDisplayNames(ULocale locale, String matchID) { in getDisplayNames() method in ICUService 672 return getDisplayNames(locale, null, matchID); in getDisplayNames() 685 …public SortedMap<String, String> getDisplayNames(ULocale locale, Comparator<Object> com, String ma… in getDisplayNames() method in ICUService
|
D | TimeZoneNamesImpl.java | 262 public void getDisplayNames(String tzID, NameType[] types, long date, in getDisplayNames() method in TimeZoneNamesImpl
|
/external/icu/icu4c/source/common/ |
D | serv.h | 721 UVector& getDisplayNames(UVector& result, UErrorCode& status) const; 732 UVector& getDisplayNames(UVector& result, const Locale& locale, UErrorCode& status) const; 757 UVector& getDisplayNames(UVector& result,
|
D | serv.cpp | 725 ICUService::getDisplayNames(UVector& result, UErrorCode& status) const in getDisplayNames() function in ICUService 727 return getDisplayNames(result, Locale::getDefault(), NULL, status); in getDisplayNames() 732 ICUService::getDisplayNames(UVector& result, const Locale& locale, UErrorCode& status) const in getDisplayNames() function in ICUService 734 return getDisplayNames(result, locale, NULL, status); in getDisplayNames() 738 ICUService::getDisplayNames(UVector& result, in getDisplayNames() function in ICUService
|
/external/icu/icu4c/source/i18n/ |
D | tznames.cpp | 122 …void getDisplayNames(const UnicodeString& tzID, const UTimeZoneNameType types[], int32_t numTypes,… 292 TimeZoneNamesDelegate::getDisplayNames(const UnicodeString& tzID, const UTimeZoneNameType types[], … in getDisplayNames() function in TimeZoneNamesDelegate 293 fTZnamesCacheEntry->names->getDisplayNames(tzID, types, numTypes, date, dest, status); in getDisplayNames() 356 TimeZoneNames::getDisplayNames(const UnicodeString& tzID, const UTimeZoneNameType types[], int32_t … in getDisplayNames() function in TimeZoneNames
|
D | tznames_impl.h | 193 …void getDisplayNames(const UnicodeString& tzID, const UTimeZoneNameType types[], int32_t numTypes,…
|
D | tznames_impl.cpp | 1589 void TimeZoneNamesImpl::getDisplayNames(const UnicodeString& tzID, in getDisplayNames() function in TimeZoneNamesImpl
|
/external/icu/icu4c/source/i18n/unicode/ |
D | tznames.h | 301 …virtual void getDisplayNames(const UnicodeString& tzID, const UTimeZoneNameType types[], int32_t n…
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | TimeZoneFormatTest.java | 1157 tznames.getDisplayNames(zone, types, date, result, 0); in TestGetDisplayNames() 1166 tznames.getDisplayNames(null, null, 0, null, 0); in TestGetDisplayNames() 1174 tznames.getDisplayNames(zone, types, date, result, 0); in TestGetDisplayNames() 1183 tznames.getDisplayNames(null, null, 0, null, 0); in TestGetDisplayNames()
|
/external/icu/icu4c/source/test/intltest/ |
D | icusvtst.cpp | 706 service.getDisplayNames(names, status); in testAPI_Two() 746 service.getDisplayNames(names, Locale("es"), status); in testAPI_Two() 917 service.getDisplayNames(names, Locale::getGermany(), status); in testRBF() 943 service.getDisplayNames(names, idNames[i], status); in testRBF()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | TimeZoneFormatTest.java | 1160 tznames.getDisplayNames(zone, types, date, result, 0); in TestGetDisplayNames() 1169 tznames.getDisplayNames(null, null, 0, null, 0); in TestGetDisplayNames() 1177 tznames.getDisplayNames(zone, types, date, result, 0); in TestGetDisplayNames() 1186 tznames.getDisplayNames(null, null, 0, null, 0); in TestGetDisplayNames()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | TimeZoneNames.java | 456 public void getDisplayNames(String tzID, NameType[] types, long date, in getDisplayNames() method in TimeZoneNames
|
D | DateFormatSymbols.java | 1384 tznames.getDisplayNames(canonicalID, types, now, array[i], 1); in getZoneStrings()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | TimeZoneNames.java | 423 public void getDisplayNames(String tzID, NameType[] types, long date, in getDisplayNames() method in TimeZoneNames
|
D | DateFormatSymbols.java | 1349 tznames.getDisplayNames(canonicalID, types, now, array[i], 1); in getZoneStrings()
|
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/ |
D | CalendarICU.java | 135 public Map<String,Integer> getDisplayNames(int field, int style, Locale locale) { in getDisplayNames() method in CalendarICU
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | CLDRLocale.java | 51 public LocaleDisplayNames getDisplayNames() { in getDisplayNames() method in CLDRLocale.SimpleFormatter
|