Home
last modified time | relevance | path

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

/libcore/ojluni/annotations/sdk/nullability/java/util/regex/
DMatcher.annotated.java100 public boolean hitEnd() { throw new RuntimeException("Stub!"); } in hitEnd() method in Matcher
/libcore/ojluni/annotations/hiddenapi/java/util/regex/
DMatcher.java171 public boolean hitEnd() { in hitEnd() method in Matcher
/libcore/luni/src/main/native/
Djava_util_regex_Matcher.cpp189 if (state->matcher()->hitEnd() != 0) { in Matcher_hitEndImpl()
/libcore/ojluni/src/main/java/java/util/
DScanner.java928 if (matcher.hitEnd() && !sourceClosed) { in getCompleteTokenInBuffer()
1029 if (matcher.hitEnd() && (!sourceClosed)) { in findPatternInBuffer()
1067 if (matcher.hitEnd() && (!sourceClosed)) { in matchPatternInBuffer()
/libcore/luni/src/test/java/libcore/java/util/regex/
DOldMatcherTest.java559 assertFalse("hitEnd should return false during parsing input", mat.hitEnd()); in test_hitEnd()
561 assertTrue("hitEnd should return true after finding last match", mat.hitEnd()); // *** in test_hitEnd()
/libcore/ojluni/src/main/java/java/util/regex/
DMatcher.java1109 public boolean hitEnd() { in hitEnd() method in Matcher
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
DMatcherTest.java797 boolean h = matcher.hitEnd(); in hitEndTest()
/libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
DPatternTest.java1822 boolean isPartialMatch = !m.matches() && m.hitEnd(); in test_hitEnd()