Searched refs:jsonObject (Results 1 - 6 of 6) sorted by relevance

/external/webkit/LayoutTests/fast/js/resources/
H A DJSON-stringify.js21 result.push(function(jsonObject){
22 return jsonObject.stringify(1);
24 result.push(function(jsonObject){
25 return jsonObject.stringify(1.5);
27 result.push(function(jsonObject){
28 return jsonObject.stringify(-1);
30 result.push(function(jsonObject){
31 return jsonObject.stringify(-1.5);
33 result.push(function(jsonObject){
34 return jsonObject
[all...]
H A DJSON-parse.js4 result.push(function(jsonObject){
5 return jsonObject.parse();
8 result.push(function(jsonObject){
9 return jsonObject.parse('');
12 result.push(function(jsonObject){
13 return jsonObject.parse('1');
15 result.push(function(jsonObject){
16 return jsonObject.parse('-1');
18 result.push(function(jsonObject){
19 return jsonObject
[all...]
/external/webkit/Source/WebCore/inspector/
H A DInspectorDatabaseResource.cpp59 RefPtr<InspectorObject> jsonObject = InspectorObject::create(); local
60 jsonObject->setNumber("id", m_id);
61 jsonObject->setString("domain", m_domain);
62 jsonObject->setString("name", m_name);
63 jsonObject->setString("version", m_version);
64 frontend->addDatabase(jsonObject);
H A DInspectorDOMStorageResource.cpp72 RefPtr<InspectorObject> jsonObject = InspectorObject::create(); local
73 jsonObject->setString("host", m_frame->document()->securityOrigin()->host());
74 jsonObject->setBoolean("isLocalStorage", m_isLocalStorage);
75 jsonObject->setNumber("id", m_id);
76 m_frontend->addDOMStorage(jsonObject);
/external/webkit/Source/WebCore/inspector/front-end/
H A DExtensionAPI.js245 setObject: function(jsonObject, rootTitle)
247 extensionServer.sendRequest({ command: "setSidebarContent", id: this._id, expression: jsonObject, rootTitle: rootTitle });
/external/webkit/Source/JavaScriptCore/API/tests/
H A Dtestapi.c998 JSValueRef jsonObject = JSValueMakeFromJSONString(context, validJSON); local
1000 if (!JSValueIsObject(context, jsonObject)) {
1006 assertEqualsAsBoolean(JSObjectGetProperty(context, JSValueToObject(context, jsonObject, 0), propertyName, 0), true);
1015 JSStringRef str = JSValueCreateJSONString(context, jsonObject, 0, 0);
1023 str = JSValueCreateJSONString(context, jsonObject, 4, 0);

Completed in 150 milliseconds