Searched refs:hitEnd (Results 1 – 10 of 10) sorted by relevance
82 boolean hitEnd = m.hitEnd(); in run()
965 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()
171 public boolean hitEnd() { in hitEnd() method in Matcher
108 public boolean hitEnd() { throw new RuntimeException("Stub!"); } in hitEnd() method in Matcher
1740 public boolean hitEnd() { in hitEnd() method in Matcher1742 return nativeMatcher.hitEnd(); in hitEnd()
346 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 …]
559 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()
797 boolean h = matcher.hitEnd(); in hitEndTest()
1830 boolean isPartialMatch = !m.matches() && m.hitEnd(); in test_hitEnd()
18104 method public boolean hitEnd();