Home
last modified time | relevance | path

Searched refs:localeWhereFound (Results 1 – 9 of 9) sorted by relevance

/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestAlt.java79 Output<String> localeWhereFound = new Output<String>(); in testAlt() local
90 localeWhereFound.value = testCldrFile.getSourceLocaleID(plain+altMedium, status); in testAlt()
93 assertEquals("Regular, localeWhereFound", "fr_CA", localeWhereFound.value); in testAlt()
95 …Bailey = testCldrFile.getConstructedBaileyValue(plain+altMedium, pathWhereFound, localeWhereFound); in testAlt()
99 assertEquals("Bailey, localeWhereFound", "fr_CA", localeWhereFound.value); in testAlt()
DTestCLDRFile.java541 Output<String> localeWhereFound = new Output<>(); in testGeorgeBailey() local
552 … String baileyValue = cldrFile.getBaileyValue(path, pathWhereFound, localeWhereFound); in testGeorgeBailey()
573 … baileyValue = cldrFile.getBaileyValue(path, pathWhereFound, localeWhereFound); in testGeorgeBailey()
580 localeWhereFound.value)) { in testGeorgeBailey()
581 … baileyValue = cldrFile.getBaileyValue(path, pathWhereFound, localeWhereFound); in testGeorgeBailey()
588 … baileyValue = cldrFile.getBaileyValue(path, pathWhereFound, localeWhereFound); in testGeorgeBailey()
/external/cldr/tools/java/org/unicode/cldr/tool/
DGetChanges.java99 Output<String> localeWhereFound = new Output<>(); in compare() local
135 vxmlValue = vxmlFileResolved.getBaileyValue(path, pathWhereFound, localeWhereFound); in compare()
136 if (ROOT_OR_CODE_FALLBACK.contains(localeWhereFound.value)) { in compare()
223 Output<String> localeWhereFound = new Output<>(); in old() local
297 … String baileyValue = snapshot.getConstructedBaileyValue(xpath, pathWhereFound, localeWhereFound); in old()
298 if (!"root".equals(localeWhereFound.value) in old()
299 && !"code-fallback".equals(localeWhereFound.value) in old()
DFindHardInheritance.java62 static Output<String> localeWhereFound = new Output<>(); field in FindHardInheritance
132 String bailey = cldrFile.getBaileyValue(path, pathWhereFound, localeWhereFound); in getCounts()
DGenerateProductionData.java289 Output<String> localeWhereFound = new Output<>(); in copyFilesAndReturnIsEmpty() local
326 …tring bailey = cldrFileResolved.getConstructedBaileyValue(xpath, pathWhereFound, localeWhereFound); in copyFilesAndReturnIsEmpty()
331 || (!Objects.equals(XMLSource.ROOT_ID, localeWhereFound.value) in copyFilesAndReturnIsEmpty()
332 … && !Objects.equals(XMLSource.CODE_FALLBACK_ID, localeWhereFound.value)))) { in copyFilesAndReturnIsEmpty()
DDiffCldr.java77 Output<String> localeWhereFound = new Output<>(); in main() local
114 …ring bailey = cldrFileResolved.getBaileyValue(distinguishedPath, pathWhereFound, localeWhereFound); in main()
/external/cldr/tools/java/org/unicode/cldr/util/
DXMLSource.java69 public final String localeWhereFound; field in XMLSource.AliasLocation
71 public AliasLocation(String pathWhereFound, String localeWhereFound) { in AliasLocation() argument
73 this.localeWhereFound = localeWhereFound; in AliasLocation()
756 System.out.println("\t*localeWhereFound: " + fullStatus.localeWhereFound); in getValueAtDPath()
769 XMLSource source = sources.get(fullStatus.localeWhereFound); in getSource()
889 …ring getBaileyValue(String xpath, Output<String> pathWhereFound, Output<String> localeWhereFound) { in getBaileyValue() argument
891 if (localeWhereFound != null) { in getBaileyValue()
892 localeWhereFound.value = fullStatus.localeWhereFound; in getBaileyValue()
977 return fullStatus.localeWhereFound; in getSourceLocaleIdExtended()
1739 …ring getBaileyValue(String xpath, Output<String> pathWhereFound, Output<String> localeWhereFound) { in getBaileyValue() argument
DCLDRFile.java612 …ring getBaileyValue(String xpath, Output<String> pathWhereFound, Output<String> localeWhereFound) { in getBaileyValue() argument
613 String result = dataSource.getBaileyValue(xpath, pathWhereFound, localeWhereFound); in getBaileyValue()
624 if (localeWhereFound != null) { in getBaileyValue()
625 localeWhereFound.value = dataSource.getSourceLocaleID(fallbackPath, status); in getBaileyValue()
654 …structedBaileyValue(String xpath, Output<String> pathWhereFound, Output<String> localeWhereFound) { in getConstructedBaileyValue() argument
657 if (localeWhereFound != null) { in getConstructedBaileyValue()
658 localeWhereFound.value = getLocaleID(); in getConstructedBaileyValue()
665 return getBaileyValue(xpath, pathWhereFound, localeWhereFound); in getConstructedBaileyValue()
3130 Output<String> localeWhereFound = new Output<>();
3132 winningValue = getBaileyValue(path, pathWhereFound, localeWhereFound);
[all …]
/external/cldr/tools/java/org/unicode/cldr/test/
DTestMisc.java557 String localeWhereFound = cldrFile.getSourceLocaleID(requestedPath, status); in showEnglish() local
558 … if (!localeWhereFound.equals(requestedLocale) || !status.pathWhereFound.equals(requestedPath)) { in showEnglish()
560 + "\tfound locale:\t" + localeWhereFound in showEnglish()
561 + "\tsame?\t" + localeWhereFound.equals(requestedLocale) in showEnglish()