Home
last modified time | relevance | path

Searched refs:toJSONString (Results 1 – 23 of 23) sorted by relevance

/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
Dstring-tagcloud.js38 if (!Object.prototype.toJSONString) {
40 Array.prototype.toJSONString = function (w) { method in Array
51 if (v && typeof v.toJSONString === 'function') {
52 a.push(v.toJSONString(w));
61 a.push(v.toJSONString());
72 Boolean.prototype.toJSONString = function () { method in Boolean
77 Date.prototype.toJSONString = function () { method in Date
93 Number.prototype.toJSONString = function () { method in Number
99 Object.prototype.toJSONString = function (w) { function
114 if (typeof v.toJSONString === 'function') {
[all …]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
Dstring-tagcloud.js38 if (!Object.prototype.toJSONString) {
40 Array.prototype.toJSONString = function (w) { method in Array
51 if (v && typeof v.toJSONString === 'function') {
52 a.push(v.toJSONString(w));
61 a.push(v.toJSONString());
72 Boolean.prototype.toJSONString = function () { method in Boolean
77 Date.prototype.toJSONString = function () { method in Date
93 Number.prototype.toJSONString = function () { method in Number
99 Object.prototype.toJSONString = function (w) { function
114 if (typeof v.toJSONString === 'function') {
[all …]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
Dstring-tagcloud.js38 if (!Object.prototype.toJSONString) {
40 Array.prototype.toJSONString = function (w) { method in Array
51 if (v && typeof v.toJSONString === 'function') {
52 a.push(v.toJSONString(w));
61 a.push(v.toJSONString());
72 Boolean.prototype.toJSONString = function () { method in Boolean
77 Date.prototype.toJSONString = function () { method in Date
93 Number.prototype.toJSONString = function () { method in Number
99 Object.prototype.toJSONString = function (w) { function
114 if (typeof v.toJSONString === 'function') {
[all …]
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
DJSONString.java17 public String toJSONString(); in toJSONString() method
DJSONObject.java1448 o = ((JSONString)value).toJSONString(); in valueToString()
1498 Object o = ((JSONString)value).toJSONString(); in valueToString()
DTest.java62 public String toJSONString() { in main() method in Test.Obj
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DInspectorFrontendHostFileSystem.cpp31 host.sendMessageToEmbedder(message->toJSONString()); in upgradeDraggedFileSystemPermissions()
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DXSSAuditorDelegate.cpp100 return FormData::create(reportObject->toJSONString().utf8().data()); in generateViolationReport()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGraphicsLayerDebugInfo.cpp44 *out = jsonObject->toJSONString(); in appendAsTraceFormat()
/external/chromium_org/third_party/WebKit/Source/platform/
DTracedValue.cpp125 return m_stack.first()->toJSONString(); in asTraceFormat()
DJSONValues.h85 String toJSONString() const;
DJSONValues.cpp152 String JSONValue::toJSONString() const in toJSONString() function in blink::JSONValue
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DWorkerInspectorController.cpp68 …rGlobalScope->thread()->workerReportingProxy().postMessageToPageInspector(message->toJSONString()); in sendMessageToFrontend()
DInspectorState.cpp173 m_client->updateInspectorStateCookie(m_stateObject->toJSONString()); in inspectorStateUpdated()
DInspectorWorkerAgent.cpp194 channel->proxy()->sendMessageToInspector(message->toJSONString()); in sendMessageToWorker()
DInspectorRuntimeAgent.cpp106 arguments = (*optionalArguments)->toJSONString(); in callFunctionOn()
DInspectorTraceEvents.cpp42 m_serialized = callstack ? callstack->buildInspectorArray()->toJSONString() : "[]"; in JSCallStack()
125 …value->setString("callstack", callstack ? callstack->buildInspectorArray()->toJSONString() : "[]"); in data()
DInspectorOverlay.cpp783 …ainFrame())->script().executeScriptInMainWorld("dispatch(" + command->toJSONString() + ")", Script… in evaluateInOverlay()
792 …ainFrame())->script().executeScriptInMainWorld("dispatch(" + command->toJSONString() + ")", Script… in evaluateInOverlay()
DInspectorDebuggerAgent.cpp1164 String newValueString = newValue->toJSONString(); in setVariableValue()
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DInspectorIndexedDBAgent.cpp454 String key = keyJsonValue ? keyJsonValue->toJSONString() : errorMessage; in handleEvent()
455 String value = valueJsonValue ? valueJsonValue->toJSONString() : errorMessage; in handleEvent()
456 … String primaryKey = primaryKeyJsonValue ? primaryKeyJsonValue->toJSONString() : errorMessage; in handleEvent()
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
DSubtleCrypto.cpp187 String json = jsonObject->toJSONString(); in copyJwkDictionaryToJson()
/external/chromium_org/third_party/WebKit/Source/web/
DWebDevToolsAgentImpl.cpp611 m_client->sendMessageToInspectorFrontend(m_frontendMessageQueue[i]->toJSONString()); in flushPendingFrontendMessages()
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/
DContentSecurityPolicy.cpp691 String stringifiedReport = reportObject->toJSONString(); in reportViolation()