Searched defs:priorityList (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/sun/util/locale/
H A DLocaleMatcher.java48 public static List<Locale> filter(List<LanguageRange> priorityList, argument
51 if (priorityList.isEmpty() || locales.isEmpty()) {
62 List<String> filteredTags = filterTags(priorityList, tags, mode);
73 public static List<String> filterTags(List<LanguageRange> priorityList, argument
76 if (priorityList.isEmpty() || tags.isEmpty()) {
82 return filterExtended(priorityList, tags);
85 for (LanguageRange lr : priorityList) {
90 return filterExtended(priorityList, tags);
112 private static List<String> filterBasic(List<LanguageRange> priorityList, argument
115 for (LanguageRange lr : priorityList) {
136 filterExtended(List<LanguageRange> priorityList, Collection<String> tags) argument
180 lookup(List<LanguageRange> priorityList, Collection<Locale> locales) argument
202 lookupTag(List<LanguageRange> priorityList, Collection<String> tags) argument
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DLocale.java3216 * {@code priorityList} and {@code map}. If the given {@code map} is
3217 * empty, this method returns a copy of the given {@code priorityList}.
3254 * @param priorityList user's Language Priority List
3258 * @throws NullPointerException if {@code priorityList} is {@code null}
3262 List<LanguageRange>priorityList,
3264 return LocaleMatcher.mapEquivalents(priorityList, map);
3314 * @param priorityList user's Language Priority List in which each language
3321 * @throws NullPointerException if {@code priorityList} or {@code locales}
3329 public static List<Locale> filter(List<LanguageRange> priorityList, argument
3332 return LocaleMatcher.filter(priorityList, locale
3352 filter(List<LanguageRange> priorityList, Collection<Locale> locales) argument
3376 filterTags(List<LanguageRange> priorityList, Collection<String> tags, FilteringMode mode) argument
3399 filterTags(List<LanguageRange> priorityList, Collection<String> tags) argument
3418 lookup(List<LanguageRange> priorityList, Collection<Locale> locales) argument
3437 lookupTag(List<LanguageRange> priorityList, Collection<String> tags) argument
[all...]

Completed in 45 milliseconds