Searched refs:lineMatcher (Results 1 – 2 of 2) sorted by relevance
117 protected Matcher lineMatcher; field in RegexModify.RegexFunction121 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()
4293 RegexMatcher lineMatcher(u"^.*?$", testFileAsString, UREGEX_MULTILINE, status); in TestEmoji() local4306 while (lineMatcher.find()) { in TestEmoji()4308 UnicodeString line = lineMatcher.group(status); in TestEmoji()