Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/regex/
DMatcher.java968 public int regionEnd() { in regionEnd() method in Matcher
1089 sb.append(regionStart() + "," + regionEnd()); in toString()
/libcore/ojluni/annotations/sdk/nullability/java/util/regex/
DMatcher.annotated.java88 public int regionEnd() { throw new RuntimeException("Stub!"); } in regionEnd() method in Matcher
/libcore/luni/src/test/java/libcore/java/util/regex/
DOldMatcherTest.java471 …tEquals("Region end value should be equal to string length", testString.length(), mat.regionEnd()); in test_regionEnd()
473 …sertEquals("Region end value should be equal to 10 after setting new region", 10, mat.regionEnd()); in test_regionEnd()
475 …ion end value should be equal to string length after reset", testString.length(), mat.regionEnd()); in test_regionEnd()
/libcore/ojluni/annotations/hiddenapi/java/util/regex/
DMatcher.java147 public int regionEnd() { in regionEnd() method in Matcher
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
DMatcherTest.java50 assertEquals(6, m.regionEnd()); in testRegionsIntInt()