HomeSort by relevance Sort by last modified time
    Searched full:ulocales (Results 1 - 25 of 39) sorted by null

1 2

  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUResourceBundle.java 583 * Get the set of ULocales installed the base bundle.
607 * Convert a list of ULocales to a list of Locales. ULocales with a script code will not be converted
610 * @param ulocales a list of ULocales to convert to a list of Locales.
611 * @return the list of converted ULocales
613 public static final Locale[] getLocaleList(ULocale[] ulocales) {
614 ArrayList<Locale> list = new ArrayList<Locale>(ulocales.length);
616 for (int i = 0; i < ulocales.length; i++) {
617 Locale loc = ulocales[i].toLocale()
814 private volatile ULocale[] ulocales; field in class:ICUResourceBundle.AvailEntry
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUResourceBundle.java 579 * Get the set of ULocales installed the base bundle.
603 * Convert a list of ULocales to a list of Locales. ULocales with a script code will not be converted
606 * @param ulocales a list of ULocales to convert to a list of Locales.
607 * @return the list of converted ULocales
609 public static final Locale[] getLocaleList(ULocale[] ulocales) {
610 ArrayList<Locale> list = new ArrayList<Locale>(ulocales.length);
612 for (int i = 0; i < ulocales.length; i++) {
613 Locale loc = ulocales[i].toLocale()
810 private volatile ULocale[] ulocales; field in class:ICUResourceBundle.AvailEntry
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
NumberFormatTest.java 306 ULocale[] ulocales = NumberFormat.getAvailableULocales(); local
309 for (int i = 0; i < ulocales.length; ++i) {
310 assertEquals(jlocales[i], ulocales[i].toLocale());
ULocaleTest.java 136 ULocale[] ulocales = ULocale.getAvailableLocales(); local
139 for (int i = 0; i < ulocales.length; ++i) {
140 assertEquals(ulocales[i].toLocale(), locales[i]);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
LocaleDisplayNames.java 25 * Returns display names of ULocales and components of ULocales. For
SpoofChecker.java 505 * A Set of ULocales, from which the language and associated script are extracted. If the locales Set
554 HashSet<ULocale> ulocales = new HashSet<ULocale>(locales.size()); local
556 ulocales.add(ULocale.forLocale(locale));
558 return setAllowedLocales(ulocales);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
LocaleDisplayNames.java 24 * Returns display names of ULocales and components of ULocales. For
SpoofChecker.java 539 * A Set of ULocales, from which the language and associated script are extracted. If the locales Set
590 HashSet<ULocale> ulocales = new HashSet<ULocale>(locales.size()); local
592 ulocales.add(ULocale.forLocale(locale));
594 return setAllowedLocales(ulocales);
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
SerializableTest.java 380 ULocale uLocales[] = new ULocale[locales.length];
383 uLocales[i] = ULocale.forLocale(locales[i]);
386 return uLocales;
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
SerializableTest.java 376 ULocale uLocales[] = new ULocale[locales.length];
379 uLocales[i] = ULocale.forLocale(locales[i]);
382 return uLocales;
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
BreakIteratorTest.java 835 android.icu.util.ULocale[] ulocales = BreakIterator.getAvailableULocales(); local
839 for (int i = 0; i < ulocales.length; i++) {
840 loc = ulocales[i];
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
BreakIterator.java 710 ULocale[] ulocales = new ULocale[locales.length]; local
712 ulocales[i] = ULocale.forLocale(locales[i]);
714 return ulocales;
    [all...]
DateFormatSymbols.java 243 ULocale[] ulocales = new ULocale[locales.length]; local
245 ulocales[i] = ULocale.forLocale(locales[i]);
247 return ulocales;
    [all...]
Collator.java 568 ULocale[] ulocales = new ULocale[locales.length]; local
570 ulocales[i] = ULocale.forLocale(locales[i]);
572 return ulocales;
    [all...]
NumberFormat.java 842 ULocale[] ulocales = new ULocale[locales.length]; local
844 ulocales[i] = ULocale.forLocale(locales[i]);
846 availableULocales = ulocales;
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
BreakIteratorTest.java 831 com.ibm.icu.util.ULocale[] ulocales = BreakIterator.getAvailableULocales(); local
835 for (int i = 0; i < ulocales.length; i++) {
836 loc = ulocales[i];
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
LocaleMatcher.java 225 public ULocale getBestMatch(ULocale... ulocales) {
226 return getBestMatch(LocalePriorityList.add(ulocales).build());
    [all...]
GlobalizationPreferences.java 210 * @param uLocales list of locales in an array
214 public GlobalizationPreferences setLocales(ULocale[] uLocales) {
218 return setLocales(Arrays.asList(uLocales));
    [all...]
Currency.java 335 * Return an array of the ulocales for which a currency
337 * @return an array of the available ulocales
    [all...]
ULocale.java 659 // category ULocales here if necessary.
726 * Note that since names are not canonicalized, two ULocales that
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/
Currency.java 168 // * Return an array of the ulocales for which a currency
170 // * @return an array of the available ulocales
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
LocaleMatcher.java 231 public ULocale getBestMatch(ULocale... ulocales) {
232 return getBestMatch(LocalePriorityList.add(ulocales).build());
    [all...]
Currency.java 349 * Return an array of the ulocales for which a currency
351 * @return an array of the available ulocales
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/util/
GlobalizationPreferences.java 217 * @param uLocales list of locales in an array
222 public GlobalizationPreferences setLocales(ULocale[] uLocales) {
226 return setLocales(Arrays.asList(uLocales));
    [all...]
  /libcore/luni/src/test/java/libcore/icu/
DateIntervalFormatTest.java 399 // If we supported non-Gregorian calendars, this is what that we'd expect for these ULocales.

Completed in 1420 milliseconds

1 2