/development/samples/SampleSyncAdapter/samplesyncadapter_server/ |
web_services.py | 131 it returns user's contact info in JSON format. 224 # using the Django built-in JSON parser 269 # the "put"), but we want it to be in the JSON object we 344 """Dumps the data represented by the object to JSON for wire transfer.""" 350 This class knows how to serialize itself to JSON.
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/ |
speech_rule.js | 109 * component in JSON format. 128 // The output JSON.
|
/external/chromium_org/chrome/browser/resources/translate_internals/ |
translate_internals.js | 210 var content = JSON.stringify(detail, null, 2); 409 var data = JSON.stringify(cr.translateInternals.detectionLogs()); 410 var blob = new Blob([data], {'type': 'text/json'}); 412 var filename = 'translate_internals_detect_logs_dump.json';
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
api_data_source.py | 68 '''Uses a Model from the JSON Schema Compiler and generates a dict that 81 posixpath.join(JSON_TEMPLATES, 'api_availabilities.json')) 83 posixpath.join(JSON_TEMPLATES, 'intro_tables.json')) 200 json={}, 328 # Add rows using data from intro_tables.json, overriding any existing rows 380 logging.error('"%s" not found in _api_features.json' % 423 'Samples', and 'Learn More', using intro_tables.json. 426 # Look up the API name in intro_tables.json, which is structured 470 '''This class fetches and loads JSON APIs from the FileSystem passed in with 495 from Event in events.json [all...] |
/external/chromium_org/content/browser/resources/media/ |
stats_graph_helper.js | 230 deltas = JSON.parse(deltas); 231 times = JSON.parse(times);
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8XMLHttpRequestCustom.cpp | 108 v8::Handle<v8::Value> json = v8::JSON::Parse(jsonSource.v8Value()); local 109 if (exceptionCatcher.HasCaught() || json.IsEmpty()) 112 v8SetReturnValue(info, json);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/ |
PaintProfilerView.js | 286 return typeof param === "string" && param.length > 100 ? name : JSON.stringify(param);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/ |
HAREntry.js | 415 this._text = JSON.stringify({log: this._harLog}, null, jsonIndent);
|
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ |
controllers.js | 59 var json = JSON.parse(response); 60 if (!json.result_code) { 63 statusView.addMessage(id, 'Rebaseline failed (code=' + json.result_code + ')!'); 64 statusView.addFinalMessage(id, json.output);
|
/external/chromium_org/ui/file_manager/file_manager/audio_player/js/ |
audio_player.js | 103 window.appState = JSON.parse(JSON.stringify(playlist)); // cloning
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
debug-blockscopes.js | 102 var json; 105 var response = JSON.parse(response_json); 172 var response = JSON.parse(response_json);
|
/external/chromium_org/v8/test/mjsunit/ |
switch.js | 156 var json = 1; 164 return json; 377 return 'case ' + JSON.stringify(value) + ': return' + 378 JSON.stringify('ok-' + value);
|
/external/chromium_org/chrome/browser/resources/google_now/ |
utility.js | 174 var request = buildServerRequest('POST', 'jserrors', 'application/json'); 182 request.send(JSON.stringify(errorObject)); 285 JSON.stringify(pendingCallbacks); 422 var stringifiedPendingCallbacks = JSON.stringify(pendingCallbacks); 728 ', queue = ' + JSON.stringify(queue) + ', ' + 795 ' queue = ' + JSON.stringify(queue) + ', ' + 934 console.log('scheduleRetry-get-storage ' + JSON.stringify(items)); [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
Tests.js | 671 return JSON.stringify({ 691 test.assertEquals('"' + JSON.stringify(metrics) + '"', consoleResult, "Wrong metrics for params: " + JSON.stringify(params));
|
/packages/apps/UnifiedEmail/src/com/android/mail/lib/base/ |
StringUtil.java | [all...] |
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/ |
StringUtil.java | [all...] |
/external/chromium_org/chrome/browser/resources/profiler/ |
profiler.js | 322 * JSON dictionary received from the browser. If this is [all...] |
/external/chromium_org/v8/src/ |
mirror-debugger.js | 159 // Maximum length when sending strings through the JSON protocol. 1129 var s = JSON.stringify(this.value_); [all...] |
debug-debugger.js | 44 JSON: 2 }; 1069 return JSON.stringify(ObjectToProtocolObject_(o)); [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/ |
proxy_form_controller.js | 105 result = JSON.parse(window.localStorage['proxyConfig']); 117 window.localStorage['proxyConfig'] = JSON.stringify(config); 783 var error = JSON.parse(response.result);
|
/external/chromium_org/remoting/webapp/ |
host_list.js | 189 * include a JSON-encoded list of host descriptions, which we display if we're 358 'Content-type' : 'application/json; charset=UTF-8' 369 JSON.stringify(newHostDetails), 511 items[remoting.HostList.HOSTS_KEY] = JSON.stringify(this.hosts_);
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ |
live_regions.js | 131 var structs = JSON.parse(message['content']); 398 'content': JSON.stringify(navDescriptions),
|
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/ |
utilities.js | 296 // Massage the sequence into a JSON array string, so '2 + 2 = [4]' becomes: 313 // Return an array created from the resulting JSON string. 314 return JSON.parse('[' + sequence + ']');
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/ |
prototype-1.7.js | 175 NATIVE_JSON_STRINGIFY_SUPPORT = window.JSON && 176 typeof JSON.stringify === 'function' && 177 JSON.stringify(0) === '0' && 178 typeof JSON.stringify(Prototype.K) === 'undefined'; 274 return JSON.stringify(object); 535 var NATIVE_JSON_PARSE_SUPPORT = window.JSON && 536 typeof JSON.parse === 'function' && 537 JSON.parse('{"test": true}').test; 705 var json = this.unfilterJSON(), 707 if (cx.test(json)) { [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
DebuggerScript.js | 450 return JSON.stringify(stepInPositionsProtocol);
|