OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:JSON
(Results
101 - 125
of
351
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/news/javascript/
feed.js
281
var msg =
JSON
.parse(e.data);
331
var keywords =
JSON
.parse(window.localStorage.getItem('keywords'));
355
var topics =
JSON
.parse(window.localStorage.getItem('topics'));
356
var keywords =
JSON
.parse(window.localStorage.getItem('keywords'));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
AuditFormatters.js
132
throw "Invalid value or formatter: " + type +
JSON
.stringify(value);
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
net.js
37
net.
json
= function(url)
42
return
JSON
.parse(xhr.responseText);
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/
template_writer.py
186
policy: The policy as it is found in the
JSON
file.
195
policy: The recommended policy as it is found in the
JSON
file.
206
group: The policy group as it is found in the
JSON
file.
221
group: The recommended policy group as it is found in the
JSON
file.
/external/chromium_org/v8/test/mjsunit/regress/
regress-94873.js
35
var request =
JSON
.stringify(cmd);
37
return
JSON
.parse(response);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.util_6.1.23.v201004211559.jar
/libcore/json/src/main/java/org/json/
JSON.java
17
package org.
json
;
19
class
JSON
{
21
* Returns the input if it is a
JSON
-permissible value; throws otherwise.
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/heap_snapshot_worker/
HeapSnapshotLoader.js
115
throw new Error("Incomplete
JSON
");
117
this._snapshot.strings =
JSON
.parse(this._json);
142
this._snapshot.snapshot = /** @type {!HeapSnapshotHeader} */ (
JSON
.parse(this._json.slice(0, closingBracketIndex)));
246
this._snapshot.trace_tree =
JSON
.parse(this._json.substring(0, bracketIndex + 1));
/external/chromium_org/v8/test/webkit/fast/js/
JSON-parse-reviver.js
24
description("Test behaviour of
JSON
reviver function.")
104
var result =
JSON
.parse('["a value", "another value", "and another value", "to delete", "extra value"]', arrayReviver);
174
var result =
JSON
.parse('{"a property" : "a value", "another property" : "another value", "and another property" : "and another value", "to delete" : "will be deleted"}', objectReviver);
190
shouldThrow('
JSON
.parse("[0,1]", reviveAddsCycle)');
203
shouldBe('
JSON
.stringify(
JSON
.parse("[0,1]", reviveIntroducesNewArrayLikeObject))', '\'[0,["a","a"]]\'');
/external/chromium_org/v8/src/
d8.js
80
JSON
: 2 };
101
var trace_debug_json = false; // Tracing all debug
json
packets?
114
// Process a debugger
JSON
message into a display text and a running status.
121
// Convert the
JSON
string to an object.
265
// Converts a text command to a
JSON
request.
276
// If the very first character is a { assume that a
JSON
request have been
277
// entered as a command. Converting that to a
JSON
request is trivial.
471
// Return undefined to indicate command handled internally (no
JSON
).
479
// Return undefined to indicate command handled internally (no
JSON
).
502
var
json
= '{'
[
all
...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
api.js
89
var message =
JSON
.parse(event.data);
114
channel_.port1.postMessage(
JSON
.stringify(message));
267
channel_.port1.postMessage(
JSON
.stringify(message));
319
channel_.port1.postMessage(
JSON
.stringify(message));
345
channel_.port1.postMessage(
JSON
.stringify(message));
381
targetNode.setAttribute('cvoxnodedesc',
JSON
.stringify(nodeDescriptions));
402
channel_.port1.postMessage(
JSON
.stringify(message));
522
channel_.port1.postMessage(
JSON
.stringify(message));
559
channel_.port1.postMessage(
JSON
.stringify(msg));
keyboard_handler.js
31
* @param {string} keyToFunctionsTable The key bindings table in
JSON
form.
35
if (!window.
JSON
) {
/external/chromium_org/chrome/test/ext_auto/auto_provider/
connection_handler.js
116
var args =
JSON
.parse(decodeURIComponent(argsJson));
126
stream.write(
JSON
.stringify({ 'type': 'eventCallback',
136
stream.write(
JSON
.stringify({'type': 'eventRegistration',
147
stream.write(
JSON
.stringify({'type': 'methodResult',
154
stream.write(
JSON
.stringify({'type': 'methodCallback',
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
loader.js
136
resultsFilename = 'times_ms.
json
';
138
resultsFilename = 'results.
json
';
140
resultsFilename = 'results-small.
json
';
168
// FIXME: We should probably include the builderName in the
JSON
169
// rather than relying on only loading one
JSON
file per page.
170
g_resultsByBuilder[builderName] =
JSON
.parse(fileData);
174
var builds =
JSON
.parse(fileData);
185
// FIXME: Grab which bots run which tests directly from the buildbot
JSON
instead.
/external/chromium_org/chrome/browser/resources/google_now/
cards.js
130
JSON
.stringify(receivedNotification));
204
console.log('cardManager.update ' +
JSON
.stringify(combinedCard));
260
JSON
.parse(
JSON
.stringify(
345
console.log('cardManager.onAlarm ' +
JSON
.stringify(alarm));
358
console.log('cardManager.onAlarm.get ' +
JSON
.stringify(items));
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
nav_braille.js
63
* Creates a NavBraille from its serialized
json
form as created
65
* @param {!Object}
json
the serialized
json
object.
68
cvox.NavBraille.fromJson = function(
json
) {
69
if (typeof
json
.startIndex !== 'number' ||
70
typeof
json
.endIndex !== 'number') {
71
throw 'Invalid start or end index in serialized NavBraille: ' +
json
;
74
text: cvox.Spannable.fromJson(
json
.spannable),
75
startIndex:
json
.startIndex,
76
endIndex:
json
.endInde
[
all
...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/preferences/allowThirdPartyCookies/
popup.js
54
console.log('pref.get result:' +
JSON
.stringify(settings));
67
console.log('pref.onChange event:' +
JSON
.stringify(settings));
/external/chromium_org/chrome/common/extensions/docs/examples/api/preferences/enableReferrer/
popup.js
54
console.log('pref.get result:' +
JSON
.stringify(settings));
67
console.log('pref.onChange event:' +
JSON
.stringify(settings));
/external/chromium_org/chrome/common/extensions/docs/server2/
schema_util.py
58
'''Replace '$ref's that refer to inline_docs with the
json
for those docs.
112
# Wrap the result in a list so that it behaves like
JSON
API data.
118
raise ValueError('Cannot parse "%s" as
JSON
:\n%s' %
122
# or multiple (data from extension_api.
json
).
/external/chromium_org/extensions/renderer/resources/
permissions_custom_bindings.js
28
ret[parts[0]] =
JSON
.parse(parts[1]);
48
JSON
.stringify(a[keys[0]]);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
LiveEditSupport.js
125
WebInspector.messageSink.addMessage(WebInspector.UIString("Unknown LiveEdit error: %s; %s",
JSON
.stringify(errorData), error), warningLevel);
/external/chromium_org/third_party/mesa/src/src/gallium/docs/
make.bat
20
echo.
json
to make
JSON
files
57
if "%1" == "
json
" (
58
%SPHINXBUILD% -b
json
%ALLSPHINXOPTS% %BUILDDIR%/
json
60
echo.Build finished; now you can process the
JSON
files.
/external/chromium_org/tools/sheriffing/
waterfallinfo.js
26
this.rootJsonUrl = waterfallUrl + '
json
/';
30
/** Send an asynchronous request to get the main waterfall's
JSON
. */
48
var url = this.url + '
json
/builders/';
53
waterfallInfo.parseJSON(
JSON
.parse(request.responseText));
/external/chromium_org/v8/test/mjsunit/
debug-evaluate-bool-constructor.js
50
request =
JSON
.stringify(request);
53
var response =
JSON
.parse(resp);
debug-liveedit-3.js
61
print("Result: " +
JSON
.stringify(result) + "\n");
62
print("Change log: " +
JSON
.stringify(change_log) + "\n");
Completed in 1136 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>