Searched refs:json_object (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/v8/src/
H A Djson-parser.h324 Handle<JSObject> json_object = local
326 Handle<Map> map(json_object->map());
364 JSObject::SetOwnElement(json_object, index, value, kNonStrictMode);
432 JSObject::AllocateStorageForMap(json_object, map);
436 json_object->FastPropertyAtPut(i, *value);
448 json_object, key, value, NONE);
456 JSObject::AllocateStorageForMap(json_object, map);
460 json_object->FastPropertyAtPut(i, *value);
465 return scope.CloseAndEscape(json_object);
H A Dcontexts.h112 V(JSON_OBJECT_INDEX, JSObject, json_object) \
H A Dbootstrapper.cc1046 Handle<JSObject> json_object = factory->NewJSObject(cons, TENURED); local
1047 ASSERT(json_object->IsJSObject());
1050 global, name, json_object, DONT_ENUM));
1051 native_context()->set_json_object(*json_object);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
H A Dgardeningserver_unittest.py80 def _serve_json(self, json_object):
82 print json.dumps(json_object)
H A Dreflectionhandler.py116 def _serve_json(self, json_object):
121 json.dump(json_object, self.wfile)
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
H A Dconductor.h130 void SendMessage(const std::string& json_object);
H A Dconductor.cc240 std::string json_object; local
491 void Conductor::SendMessage(const std::string& json_object) { argument
492 std::string* msg = new std::string(json_object);
/external/v8/src/
H A Djson-parser.h290 Handle<JSObject> json_object = local
306 JSObject::SetOwnElement(json_object, index, value, kNonStrictMode);
308 SetPrototype(json_object, value);
311 json_object, key, value, NONE);
319 return json_object;
H A Dcontexts.h113 V(JSON_OBJECT_INDEX, JSObject, json_object) \
H A Dbootstrapper.cc1039 Handle<JSObject> json_object = factory->NewJSObject(cons, TENURED); local
1040 ASSERT(json_object->IsJSObject());
1043 global, name, json_object, DONT_ENUM));
1044 global_context()->set_json_object(*json_object);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Djson_results_generator.py73 def write_json(filesystem, json_object, file_path, callback=None):
75 json_string = json.dumps(json_object, separators=(',', ':'))
251 json_object = self.get_json()
252 if json_object:
254 write_json(self._filesystem, json_object, file_path)

Completed in 718 milliseconds