HomeSort by relevance Sort by last modified time
    Searched defs:JSONObject (Results 1 - 9 of 9) sorted by null

  /external/webkit/JavaScriptCore/runtime/
JSONObject.h 35 class JSONObject : public JSObject {
37 JSONObject(NonNullPassRefPtr<Structure> structure)
  /external/webkit/WebKitTools/simplejson/
decoder.py 118 def JSONObject(match, context, _w=WHITESPACE.match):
158 pattern(r'{')(JSONObject)
187 JSONObject,
  /libcore/json/src/main/java/org/json/
JSONStringer.java 26 * Implements {@link JSONObject#toString} and {@link JSONArray#toString}. Most
29 * JSONObject object = ...
47 * output. To encode indented output, use {@link JSONObject#toString(int)} or
105 * JSONObject.quote() only. Not used for JSON encoding.
222 * @param value a {@link JSONObject}, {@link JSONArray}, String, Boolean,
236 } else if (value instanceof JSONObject) {
237 ((JSONObject) value).writeTo(this);
245 || value == JSONObject.NULL) {
249 out.append(JSONObject.numberToString((Number) value));
284 out.append(JSONObject.numberToString(value))
    [all...]
JSONObject.java 28 * Values may be any mix of {@link JSONObject JSONObjects}, {@link JSONArray
52 * coerced, the sentinel value {@link JSONObject#NULL} is coerced to the
68 * JSONObject#NULL}. In particular, calling {@code put(name, null)} removes the
69 * named entry from the object but {@code put(name, JSONObject.NULL)} stores an
70 * entry whose value is {@code JSONObject.NULL}.
78 public class JSONObject {
109 * Creates a {@code JSONObject} with no name/value mappings.
111 public JSONObject() {
116 * Creates a new {@code JSONObject} by copying all name/value mappings from
124 public JSONObject(Map copyFrom)
    [all...]
  /libcore/json/src/test/java/org/json/
JSONObjectTest.java 37 JSONObject object = new JSONObject();
106 JSONObject a = new JSONObject();
107 JSONObject b = new JSONObject();
115 JSONObject object = new JSONObject();
139 JSONObject object = new JSONObject();
    [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 118 milliseconds