summaryrefslogtreecommitdiffstats
path: root/core/java/android/util/JsonReader.java
Commit message (Expand)AuthorAgeFilesLines
* Fixed a possible infinite loop in JsonReader#skipValue()Calin Juravle2014-02-181-0/+3
* Fix benign off-by-one in JsonReader.Jesse Wilson2011-07-221-3/+3
* Skip byte order mark (BOM) in JsonReaderJesse Wilson2011-07-201-0/+8
* Track line and column when parsing JSON.Jesse Wilson2011-07-181-1/+40
* Pool strings in JsonReader.Jesse Wilson2011-04-211-5/+8
* Don't leak JsonReaders in example code.Jesse Wilson2011-03-161-1/+5
* Patch new JSON APIs with changes informed by GSON.Jesse Wilson2011-01-101-13/+21
* Decode JSON literal types eagerly and with our own decoder.Jesse Wilson2010-11-181-149/+197
* Fix typos in JSON documentation.Jesse Wilson2010-10-151-2/+2
* Optimizing skipValue() to avoid allocation.Jesse Wilson2010-08-061-13/+23
* Adding JsonReader.setLenient() to handle malformed JSON strings.Jesse Wilson2010-08-061-61/+103
* A new streaming JSON API.Jesse Wilson2010-08-061-0/+1006