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