Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/util/
DJsonReader.java858 private boolean skipTo(String toFind) throws IOException { in skipTo() argument
860 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()