OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:JSON
(Results
76 - 100
of
351
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/tools/sheriffing/
statuspageinfo.js
9
this.jsonUrl = statusPageUrl + 'current?format=
json
';
16
/** Send and parse an asynchronous request to get a repo status
JSON
. */
31
var statusPageJson =
JSON
.parse(request.responseText);
/external/chromium_org/v8/test/mjsunit/regress/
regress-241344.js
28
// Create a
JSON
string for an object with indexed properties.
37
var jsonobject =
JSON
.parse(jsonstring);
regress-752.js
28
// Test that
JSON
.stringify correctly unwraps Boolean objects.
36
assertEquals("[false]",
JSON
.stringify([42], replacer));
regress-latin-1.js
31
assertEquals(0x80,
JSON
.stringify("\x80").charCodeAt(1));
32
assertEquals(0x80,
JSON
.stringify("\x80", 0, null).charCodeAt(1));
88
var stringified =
JSON
.stringify({"test" : testString}, null, 0);
/external/skia/expectations/gm/
loader.js
3
* Reads an expected-results.
json
file, and imports its data into $scope.
12
return
JSON
.parse(data.replace(/\s(\d+)\s/g, " \"$1\" "));
19
/* When the changePlatformPath function is called, download expected-results.
json
22
* When the
JSON
is received, predigest it and return it to the frontend as
26
$http.get($scope.platformPath + "/expected-results.
json
").success(
/external/skia/experimental/webtry/res/js/
webtry.js
92
// The response is
JSON
of the form:
98
body =
JSON
.parse(e.target.response);
131
req.overrideMimeType('application/
json
');
182
req.overrideMimeType('application/
json
');
192
// The response is
JSON
of the form:
198
body =
JSON
.parse(e.target.response);
215
clone.querySelector('.tries').setAttribute('data-try', '/
json
/' + hash);
226
// The response is
JSON
of the form:
236
body =
JSON
.parse(e.target.response);
272
req.overrideMimeType('application/
json
');
[
all
...]
/external/chromium_org/chrome/browser/resources/sync_internals/
data.js
15
data +=
JSON
.stringify(chrome.sync.aboutInfo, null, 2);
22
data +=
JSON
.stringify(chrome.sync.notifications, null, 2);
29
data +=
JSON
.stringify(chrome.sync.log.entries, null, 2);
78
fieldVal =
JSON
.stringify(node[field]);
137
var aboutInfo =
JSON
.stringify(chrome.sync.aboutInfo, null, 2);
/external/chromium_org/remoting/webapp/
client_plugin.js
438
this.plugin.postMessage(
JSON
.stringify(
474
this.plugin.postMessage(
JSON
.stringify(
476
this.plugin.postMessage(
JSON
.stringify(
496
this.plugin.postMessage(
JSON
.stringify(
508
this.plugin.postMessage(
JSON
.stringify(
523
this.plugin.postMessage(
JSON
.stringify(
537
this.plugin.postMessage(
JSON
.stringify(
563
this.plugin.postMessage(
JSON
.stringify(
579
this.plugin.postMessage(
JSON
.stringify(
595
this.plugin.postMessage(
JSON
.stringify
[
all
...]
typecheck.js
131
* Return a
JSON
object parsed from a string.
136
* @param {string} jsonString The
JSON
string to parse.
137
* @return {Object} The
JSON
object created from the |jsonString|.
140
var value = /** @type {Object} */
JSON
.parse(jsonString);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
InspectorBackend.js
195
var schema =
JSON
.parse(xhr.responseText);
422
this._dumpProtocolMessage("frontend: " +
JSON
.stringify(messageObject));
461
console.error("Protocol Error: the message with wrong id. Message = " +
JSON
.stringify(messageObject));
470
this._dumpProtocolMessage("backend: " + ((typeof message === "string") ? message :
JSON
.stringify(message)));
472
var messageObject = /** @type {!Object} */ ((typeof message === "string") ?
JSON
.parse(message) : message);
576
var message =
JSON
.stringify(messageObject);
623
var message =
JSON
.stringify(messageObject);
649
var message =
JSON
.stringify(messageObject);
743
console.error("Protocol Error: Invalid number of arguments for method '" + method + "' call. It must have the following arguments '" +
JSON
.stringify(signature) + "'.");
788
console.error("Request with id = " + messageObject.id + " failed. " +
JSON
.stringify(messageObject.error))
[
all
...]
/external/chromium_org/v8/src/
json.js
12
var $
JSON
= global.
JSON
;
223
// Set up non-enumerable properties of the
JSON
object.
224
InstallFunctions($
JSON
, DONT_ENUM, $Array(
234
//
JSON
Builtins
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_manager/
background.js
143
openWhenComplete =
JSON
.parse(localStorage.openWhenComplete);
145
localStorage.openWhenComplete =
JSON
.stringify(openWhenComplete);
151
localStorage.openWhenComplete =
JSON
.stringify(openWhenComplete);
200
var targetIcon =
JSON
.stringify(options);
238
ids =
JSON
.parse(localStorage.openWhenComplete);
240
localStorage.openWhenComplete =
JSON
.stringify(ids);
247
localStorage.openWhenComplete =
JSON
.stringify(ids);
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_filename_controller/
options.js
73
JSON
.parse(rules).forEach(function(rule) {new Rule(rule);});
75
localStorage.rules =
JSON
.stringify([]);
80
localStorage.rules =
JSON
.stringify(Array.prototype.slice.apply(
/external/chromium_org/chrome/renderer/resources/extensions/
notifications_custom_bindings.js
103
// copy a complex
JSON
object.
104
var notification_details =
JSON
.parse(
105
JSON
.stringify(input_notification_details));
/external/chromium_org/v8/test/mjsunit/
mirror-date.js
32
// Create mirror and
JSON
representation.
35
var
json
=
JSON
.stringify(serializer.serializeValue(mirror));
51
// Parse
JSON
representation and check.
52
var fromJSON = eval('(' +
json
+ ')');
mirror-number.js
32
// Create mirror and
JSON
representation.
35
var
json
=
JSON
.stringify(serializer.serializeValue(mirror));
50
// Parse
JSON
representation and check.
51
var fromJSON = eval('(' +
json
+ ')');
mirror-string.js
34
// Create mirror and
JSON
representation.
37
var
json
=
JSON
.stringify(serializer.serializeValue(mirror));
57
// Parse
JSON
representation and check.
58
var fromJSON = eval('(' +
json
+ ')');
mirror-regexp.js
55
// Create mirror and
JSON
representation.
58
var
json
=
JSON
.stringify(serializer.serializeValue(mirror));
60
JSON
.stringify(serializer.serializeReferencedObjects()));
81
// Parse
JSON
representation and check.
82
var fromJSON = eval('(' +
json
+ ')');
mirror-script.js
33
// Create mirror and
JSON
representation.
36
var
json
=
JSON
.stringify(serializer.serializeValue(mirror));
66
// Parse
JSON
representation and check.
67
var fromJSON =
JSON
.parse(
json
);
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
host.js
66
/** @type {boolean} */(
JSON
.parse(prefs['earcons']));
69
/** @type {number} */(
JSON
.parse(prefs['typingEcho']));
74
JSON
.parse(prefs['position']));
79
/** @type {number} */ (
JSON
.parse(prefs['granularity'])));
/external/chromium_org/chrome/common/extensions/docs/examples/api/notifications/
options.js
17
options.isActivated.checked =
JSON
.parse(localStorage.isActivated);
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/mappy/
popup.js
8
var url = 'https://maps.googleapis.com/maps/api/geocode/
json
?address=' +
18
var
json
=
JSON
.parse(request.responseText);
19
var latlng =
json
.results[0].geometry.location;
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
checkout_unittests.js
113
JSON
.stringify({
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
results.js
33
// Keys in the
JSON
files.
49
// FIXME: Create a ResultsJson class or something similar that abstracts out the
JSON
50
// data format. Code outside this class shouldn't know about the guts of the
JSON
format.
52
// Enum for indexing into the run-length encoded results in the
JSON
files.
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/
key_map.js
12
* A caller is responsible for providing a
JSON
keymap (a simple Object key
56
* Path to dir containing ChromeVox keymap
json
definitions.
67
* user configurable, so it doesn't make sense to
json
-stringify it.
74
'file': 'classic_keymap.
json
'
77
'file': 'flat_keymap.
json
'
80
'file': 'experimental.
json
'
129
*
JSON
.stringify.
130
* @return {string} The
JSON
representation of this instance.
133
return
JSON
.stringify({bindings: this.bindings_});
294
// TODO(dtseng): Need unit test to ensure command is valid for every *.
json
[
all
...]
Completed in 956 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>