Home | History | Annotate | Download | only in util

Lines Matching defs:lenient

57  * exception. Lenient parsers should call {@link #skipValue()} to recursively
187 private boolean lenient = false;
244 * parser to lenient causes it to ignore the following syntax errors:
261 public void setLenient(boolean lenient) {
262 this.lenient = lenient;
269 return lenient;
335 if (!lenient && token != JsonToken.BEGIN_ARRAY && token != JsonToken.BEGIN_OBJECT) {
353 if (lenient) {
609 /* In lenient mode, a 0-length literal means 'null' */
671 * Read the name/value separator. Usually a colon ':'. In lenient mode
834 if (!lenient) {