Lines Matching refs:json_object
165 ParseElementResult ParseElement(Handle<JSObject> json_object);
192 void CommitStateToJsonObject(Handle<JSObject> json_object, Handle<Map> map,
309 Handle<JSObject> json_object) { in ParseElement() argument
332 JSObject::SetOwnElementIgnoreAttributes(json_object, index, value, NONE) in ParseElement()
347 Handle<JSObject> json_object = in ParseJsonObject() local
349 Handle<Map> map(json_object->map()); in ParseJsonObject()
365 ParseElementResult element_result = ParseElement(json_object); in ParseJsonObject()
439 CommitStateToJsonObject(json_object, map, &properties); in ParseJsonObject()
441 JSObject::DefinePropertyOrElementIgnoreAttributes(json_object, key, value) in ParseJsonObject()
447 CommitStateToJsonObject(json_object, map, &properties); in ParseJsonObject()
457 ParseElementResult element_result = ParseElement(json_object); in ParseJsonObject()
478 JSObject::DefinePropertyOrElementIgnoreAttributes(json_object, key, in ParseJsonObject()
488 return scope.CloseAndEscape(json_object); in ParseJsonObject()
494 Handle<JSObject> json_object, Handle<Map> map, in CommitStateToJsonObject() argument
496 JSObject::AllocateStorageForMap(json_object, map); in CommitStateToJsonObject()
497 DCHECK(!json_object->map()->is_dictionary_map()); in CommitStateToJsonObject()
504 json_object->WriteToField(i, *value); in CommitStateToJsonObject()