Searched refs:toFind (Results 1 – 1 of 1) sorted by relevance
784 private boolean skipTo(String toFind) throws IOException { in skipTo() argument786 for (; pos + toFind.length() < limit || fillBuffer(toFind.length()); pos++) { in skipTo()787 for (int c = 0; c < toFind.length(); c++) { in skipTo()788 if (buffer[pos + c] != toFind.charAt(c)) { in skipTo()