Searched refs:expectedChar (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/util/
H A DPageRangeUtils.java211 * @param expectedChar The character to read
216 private static Pair<Integer, Character> readChar(CharSequence s, int pos, char expectedChar) { argument
217 if (pos < s.length() && s.charAt(pos) == expectedChar) {
218 return new Pair<>(pos + 1, expectedChar);

Completed in 26 milliseconds