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

/external/chromium_org/v8/test/webkit/resources/
H A DJSON-stringify.js44 result.push(function(jsonObject){
45 return jsonObject.stringify(1);
47 result.push(function(jsonObject){
48 return jsonObject.stringify(1.5);
50 result.push(function(jsonObject){
51 return jsonObject.stringify(-1);
53 result.push(function(jsonObject){
54 return jsonObject.stringify(-1.5);
56 result.push(function(jsonObject){
57 return jsonObject
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsLayerDebugInfo.cpp39 RefPtr<JSONObject> jsonObject = JSONObject::create(); local
40 appendLayoutRects(jsonObject.get());
41 appendCompositingReasons(jsonObject.get());
42 appendDebugName(jsonObject.get());
43 appendOwnerNodeId(jsonObject.get());
44 *out = jsonObject->toJSONString();
63 void GraphicsLayerDebugInfo::appendLayoutRects(JSONObject* jsonObject) const
77 jsonObject->setArray("layout_rects", jsonArray);
80 void GraphicsLayerDebugInfo::appendCompositingReasons(JSONObject* jsonObject) const
88 jsonObject
[all...]
/external/chromium_org/remoting/webapp/
H A Dgnubby_auth_handler.js68 * @param {Object} jsonObject The JSON object to send to the gnubbyd extension.
73 function(jsonObject, callback) {
78 jsonObject,
79 onGnubbydDevReply_.bind(this, jsonObject, callback));
86 * @param {Object} jsonObject The JSON object to send to the gnubbyd extension.
92 function onGnubbydDevReply_(jsonObject, callback, reply) {
98 chrome.runtime.sendMessage(kGnubbydStableExtensionId, jsonObject, callback);
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DInspectorDatabaseResource.cpp61 RefPtr<TypeBuilder::Database::Database> jsonObject = TypeBuilder::Database::Database::create() local
66 frontend->addDatabase(jsonObject);
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dchromeos_view.js73 var jsonObject;
76 jsonObject = JSON.parse(fileContent);
79 if (jsonObject &&
80 jsonObject.hasOwnProperty('Type') &&
81 jsonObject.Type == 'EncryptedConfiguration') {
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DSubtleCrypto.cpp168 RefPtr<JSONObject> jsonObject = JSONObject::create(); local
170 if (!copyStringProperty("kty", dict, jsonObject.get())) {
175 copyStringProperty("use", dict, jsonObject.get());
176 copySequenceOfStringProperty("key_ops", dict, jsonObject.get());
177 copyStringProperty("alg", dict, jsonObject.get());
181 jsonObject->setBoolean("ext", ext);
185 copyStringProperty(propertyNames[i], dict, jsonObject.get());
187 String json = jsonObject->toJSONString();
/external/chromium_org/third_party/libaddressinput/src/java/test/com/android/i18n/addressinput/
H A DCacheDataTest.java57 JSONObject jsonObject = null;
59 jsonObject = new JSONObject(AddressDataMapLoader.DATA.get(id));
64 cache.addToJsoMap(id, jsonObject);
76 JSONObject jsonObject = new JSONObject(AddressDataMapLoader.DATA.get(id));
77 String jsonString = jsonObject.toString();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DOverridesSupport.js213 var jsonObject = JSON.parse(value);
214 return new WebInspector.OverridesSupport.DeviceOrientation(jsonObject.alpha, jsonObject.beta, jsonObject.gamma);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8Binding.cpp917 RefPtr<JSONObject> jsonObject = JSONObject::create(); local
930 jsonObject->setValue(nameString, propertyValue);
932 return jsonObject;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
H A DExtensionAPI.js543 setObject: function(jsonObject, rootTitle, callback)
545 extensionServer.sendRequest({ command: commands.SetSidebarContent, id: this._id, expression: jsonObject, rootTitle: rootTitle }, callback);

Completed in 9569 milliseconds