Home
last modified time | relevance | path

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

/libcore/metrictests/memory/apps/src/libcore/heapdumper/
DActions.java82 boolean hitEnd = m.hitEnd(); in run()
/libcore/ojluni/src/main/java/java/util/
DScanner.java965 if (matcher.hitEnd() && !sourceClosed) { in hasTokenInBuffer()
1004 if (matcher.hitEnd() && !sourceClosed) { in getCompleteTokenInBuffer()
1105 if (matcher.hitEnd() && (!sourceClosed)) { in findPatternInBuffer()
1144 if (matcher.hitEnd() && (!sourceClosed)) { in matchPatternInBuffer()
3017 if (matcher.find() && (!matcher.hitEnd() || sourceClosed)) { in nextInBuffer()
/libcore/ojluni/annotations/hiddenapi/java/util/regex/
DMatcher.java171 public boolean hitEnd() { in hitEnd() method in Matcher
/libcore/ojluni/annotations/sdk/nullability/java/util/regex/
DMatcher.annotated.java108 public boolean hitEnd() { throw new RuntimeException("Stub!"); } in hitEnd() method in Matcher
/libcore/ojluni/src/main/java/java/util/regex/
DMatcher.java1740 public boolean hitEnd() { in hitEnd() method in Matcher
1742 return nativeMatcher.hitEnd(); in hitEnd()
/libcore/ojluni/src/test/java/util/regex/
DRegExTest.java346 assertFalse(m.hitEnd(), "Matcher should not be at end of sequence"); in hitEndTest()
349 assertTrue(m.hitEnd(), "Matcher should be at the end of sequence"); in hitEndTest()
359 assertFalse(m.hitEnd(), "Slice node test"); in hitEndTest()
362 assertTrue(m.hitEnd(), "Slice node test"); in hitEndTest()
369 assertTrue(m.hitEnd(), "Boyer-Moore node test"); in hitEndTest()
374 assertTrue(m.hitEnd(), "Boyer-More node test"); in hitEndTest()
380 assertFalse(m.hitEnd()); in hitEndTest()
384 assertTrue(m.hitEnd()); in hitEndTest()
388 assertFalse(m.hitEnd()); in hitEndTest()
905 assertTrue(matcher.hitEnd(), "Expected to hit the end when" + in regionTest()
[all …]
/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/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.java1830 boolean isPartialMatch = !m.matches() && m.hitEnd(); in test_hitEnd()
/libcore/api/
Dcurrent.txt18104 method public boolean hitEnd();