Home
last modified time | relevance | path

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

/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestAliases.java89 Matcher countMatcher = Pattern.compile("\\[@count=\"([^\"]*)\"\\]").matcher(""); in testCountFull() local
106 countMatcher.reset(path).find(); in testCountFull()
107 String sourceCount = countMatcher.group(1); in testCountFull()
108 countMatcher.reset(actualPath).find(); in testCountFull()
109 String actualCount = countMatcher.group(1); in testCountFull()
/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateXMB.java447 Matcher countMatcher = COUNT_OR_ALT_ATTRIBUTE.matcher(""); in writeFile() local
534 countMatcher.reset(path).find(); in writeFile()
535 String countLessPath = countMatcher.replaceAll(""); in writeFile()