Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/tool/
DRegexModify.java117 protected Matcher lineMatcher; field in RegexModify.RegexFunction
121 lineMatcher = Pattern.compile(getPattern()).matcher(""); in RegexFunction()
133 if (lineMatcher.reset(line).matches()) { in apply()
140 System.out.println(RegexUtilities.showMismatch(lineMatcher, line)); in apply()
166 String value = convertToCldr(lineMatcher.group(2)); in fixLine()
167 String value2 = convertToCldr(lineMatcher.group(4)); in fixLine()
169 … return lineMatcher.replaceAll("$1" + value + "$3" + value2 + "$5"); // TODO modify to be cleaner in fixLine()
/external/icu/icu4c/source/test/intltest/
Drbbitst.cpp4293 RegexMatcher lineMatcher(u"^.*?$", testFileAsString, UREGEX_MULTILINE, status); in TestEmoji() local
4306 while (lineMatcher.find()) { in TestEmoji()
4308 UnicodeString line = lineMatcher.group(status); in TestEmoji()