Home
last modified time | relevance | path

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

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
DMatcherTest.java330 String[][] stringSingles = { { "aaaaa", "aaa" }, in testMatchesQuantifiers() local
340 for (int j = 0; j < stringSingles.length / 2; j++) { in testMatchesQuantifiers()
342 + " : " + stringSingles[i][j], pat.matcher( in testMatchesQuantifiers()
343 stringSingles[i][j * 2]).matches()); in testMatchesQuantifiers()
345 + pat.pattern() + " : " + stringSingles[i][j * 2 + 1], in testMatchesQuantifiers()
346 pat.matcher(stringSingles[i][j * 2 + 1]).matches()); in testMatchesQuantifiers()