Searched refs:json_object (Results 1 – 11 of 11) sorted by relevance
/external/chromium_org/v8/src/ |
D | json-parser.h | 324 Handle<JSObject> json_object = in ParseJsonObject() local 326 Handle<Map> map(json_object->map()); in ParseJsonObject() 364 JSObject::SetOwnElement(json_object, index, value, kNonStrictMode); in ParseJsonObject() 432 JSObject::AllocateStorageForMap(json_object, map); in ParseJsonObject() 436 json_object->FastPropertyAtPut(i, *value); in ParseJsonObject() 448 json_object, key, value, NONE); in ParseJsonObject() 456 JSObject::AllocateStorageForMap(json_object, map); in ParseJsonObject() 460 json_object->FastPropertyAtPut(i, *value); in ParseJsonObject() 465 return scope.CloseAndEscape(json_object); in ParseJsonObject()
|
D | contexts.h | 112 V(JSON_OBJECT_INDEX, JSObject, json_object) \
|
D | bootstrapper.cc | 1046 Handle<JSObject> json_object = factory->NewJSObject(cons, TENURED); in InitializeGlobal() local 1047 ASSERT(json_object->IsJSObject()); in InitializeGlobal() 1050 global, name, json_object, DONT_ENUM)); in InitializeGlobal() 1051 native_context()->set_json_object(*json_object); in InitializeGlobal()
|
/external/v8/src/ |
D | json-parser.h | 290 Handle<JSObject> json_object = in ParseJsonObject() local 306 JSObject::SetOwnElement(json_object, index, value, kNonStrictMode); in ParseJsonObject() 308 SetPrototype(json_object, value); in ParseJsonObject() 311 json_object, key, value, NONE); in ParseJsonObject() 319 return json_object; in ParseJsonObject()
|
D | contexts.h | 113 V(JSON_OBJECT_INDEX, JSObject, json_object) \
|
D | bootstrapper.cc | 1039 Handle<JSObject> json_object = factory->NewJSObject(cons, TENURED); in InitializeGlobal() local 1040 ASSERT(json_object->IsJSObject()); in InitializeGlobal() 1043 global, name, json_object, DONT_ENUM)); in InitializeGlobal() 1044 global_context()->set_json_object(*json_object); in InitializeGlobal()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/ |
D | reflectionhandler.py | 116 def _serve_json(self, json_object): argument 121 json.dump(json_object, self.wfile)
|
D | gardeningserver_unittest.py | 80 def _serve_json(self, json_object): argument 82 print json.dumps(json_object)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
D | json_results_generator.py | 73 def write_json(filesystem, json_object, file_path, callback=None): argument 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)
|
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/ |
D | conductor.cc | 240 std::string json_object; in OnMessageFromPeer() local 491 void Conductor::SendMessage(const std::string& json_object) { in SendMessage() argument 492 std::string* msg = new std::string(json_object); in SendMessage()
|
D | conductor.h | 130 void SendMessage(const std::string& json_object);
|