Home
last modified time | relevance | path

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

/libcore/ojluni/src/test/java/util/regex/
DPatternStreamTest.java181 AtomicInteger actualMatches = new AtomicInteger(); in testReplaceAll() local
182 pattern.matcher(input).replaceAll(r -> "R" + actualMatches.incrementAndGet()); in testReplaceAll()
183 assertEquals(expectedMatches, actualMatches.get()); in testReplaceAll()