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

/openjdk7/jdk/src/share/classes/java/util/
H A DResourceBundle.java1291 List<Locale> candidateLocales = control.getCandidateLocales(baseName, targetLocale);
1292 if (!isKnownControl && !checkList(candidateLocales)) {
1296 bundle = findBundle(cacheKey, candidateLocales, formats, 0, control, baseBundle);
1306 || (candidateLocales.size() == 1
1307 && bundle.locale.equals(candidateLocales.get(0)))) {
1346 List<Locale> candidateLocales,
1351 Locale targetLocale = candidateLocales.get(index);
1353 if (index != candidateLocales.size() - 1) {
1354 parent = findBundle(cacheKey, candidateLocales, formats, index + 1,
1345 findBundle(CacheKey cacheKey, List<Locale> candidateLocales, List<String> formats, int index, Control control, ResourceBundle baseBundle) argument

Completed in 36 milliseconds