Home
last modified time | relevance | path

Searched refs:writtenLanguage (Results 1 – 2 of 2) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateMaximalLocales.java960 …for (String writtenLanguage : supplementalData.getLanguagesForTerritoryWithPopulationData(region))… in tryDifferentAlgorithm()
961 …ulationData data = supplementalData.getLanguageAndTerritoryPopulationData(writtenLanguage, region); in tryDifferentAlgorithm()
966 final String locale = writtenLanguage + "_" + region; in tryDifferentAlgorithm()
980 System.out.println("Retaining\t" + writtenLanguage + "\t" + region + "\t" in tryDifferentAlgorithm()
987 String language = writtenLanguage; in tryDifferentAlgorithm()
988 final int pos = writtenLanguage.indexOf('_'); in tryDifferentAlgorithm()
990 language = writtenLanguage.substring(0, pos); in tryDifferentAlgorithm()
991 script = writtenLanguage.substring(pos + 1); in tryDifferentAlgorithm()
DShowKeyboards.java468 String writtenLanguage = uLocale.getLanguage() + (script.isEmpty() ? "" : "_" + script); in showLocaleToCharacters() local
471 cldrFile = factory.make(writtenLanguage, true); in showLocaleToCharacters()