Searched defs:quote (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/util/
H A DJsonReader.java652 int quote = nextNonWhitespace();
653 switch (quote) {
657 name = nextString((char) quote);
870 * Returns the string up to but not including {@code quote}, unescaping any
871 * character escape sequences encountered along the way. The opening quote
872 * should have already been read. This consumes the closing quote, but does
875 * @param quote either ' or ".
879 private String nextString(char quote) throws IOException { argument
887 if (c == quote) {

Completed in 1065 milliseconds