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

/libcore/ojluni/src/main/java/java/util/
H A DResourceBundle.java1350 List<Locale> candidateLocales = control.getCandidateLocales(baseName, targetLocale);
1351 if (!isKnownControl && !checkList(candidateLocales)) {
1355 bundle = findBundle(cacheKey, candidateLocales, formats, 0, control, baseBundle);
1365 || (candidateLocales.size() == 1
1366 && bundle.locale.equals(candidateLocales.get(0)))) {
1405 List<Locale> candidateLocales,
1410 Locale targetLocale = candidateLocales.get(index);
1412 if (index != candidateLocales.size() - 1) {
1413 parent = findBundle(cacheKey, candidateLocales, formats, index + 1,
1404 findBundle(CacheKey cacheKey, List<Locale> candidateLocales, List<String> formats, int index, Control control, ResourceBundle baseBundle) argument

Completed in 8 milliseconds