Home | History | Annotate | Download | only in src

Lines Matching defs:JSON

67                                 JSON: 2 };
883 return JSON.stringify(ObjectToProtocolObject_(o));
1131 var json = {};
1132 json.seq= this.seq;
1134 json.request_seq = this.request_seq;
1136 json.type = this.type;
1138 json.event = this.event;
1141 json.command = this.command;
1144 json.success = this.success;
1146 json.success = false;
1166 json.body = bodyJson;
1167 json.refs = serializer.serializeReferencedObjects();
1170 json.message = this.message;
1172 json.running = this.running;
1173 return JSON.stringify(json);
1187 // Convert the JSON string to an object.
1267 // Return the response as a JSON encoded string.
2005 * may be serilized to a JSON object using JSON.stringify().
2043 var json = [];
2045 json.push(ValueToProtocolValue_(array[i], mirror_serializer));
2047 return json;
2060 var json;
2064 json = mirror_serializer.serializeValue(value);
2066 json = ArrayToProtocolArray_(value, mirror_serializer);
2068 json = ObjectToProtocolObject_(value, mirror_serializer);
2075 json = value;
2079 json = null;
2081 return json;