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.java937 …for (String writtenLanguage : supplementalData.getLanguagesForTerritoryWithPopulationData(region))… in tryDifferentAlgorithm()
938 …ulationData data = supplementalData.getLanguageAndTerritoryPopulationData(writtenLanguage, region); in tryDifferentAlgorithm()
943 final String locale = writtenLanguage + "_" + region; in tryDifferentAlgorithm()
957 System.out.println("Retaining\t" + writtenLanguage + "\t" + region + "\t" in tryDifferentAlgorithm()
964 String language = writtenLanguage; in tryDifferentAlgorithm()
965 final int pos = writtenLanguage.indexOf('_'); in tryDifferentAlgorithm()
967 language = writtenLanguage.substring(0, pos); in tryDifferentAlgorithm()
968 script = writtenLanguage.substring(pos + 1); in tryDifferentAlgorithm()
DShowKeyboards.java464 String writtenLanguage = uLocale.getLanguage() + (script.isEmpty() ? "" : "_" + script); in showLocaleToCharacters() local
467 cldrFile = factory.make(writtenLanguage, true); in showLocaleToCharacters()