Searched refs:fullLocale (Results 1 – 1 of 1) sorted by relevance
176 StringBuilder fullLocale = constructFullLocale(language, script, region); in findBestMatchingLanguageCode() local177 String fullLocaleStr = fullLocale.toString(); in findBestMatchingLanguageCode()218 StringBuilder fullLocale = new StringBuilder(language); in constructFullLocale() local219 appendSubsequentLocalePart(script, fullLocale); in constructFullLocale()220 appendSubsequentLocalePart(region, fullLocale); in constructFullLocale()221 return fullLocale; in constructFullLocale()224 private void appendSubsequentLocalePart(String subsequentLocalePart, StringBuilder fullLocale) { in appendSubsequentLocalePart() argument226 fullLocale.append('_').append(subsequentLocalePart); in appendSubsequentLocalePart()