HomeSort by relevance Sort by last modified time
    Searched refs:json (Results 901 - 925 of 1526) sorted by null

<<31323334353637383940>>

  /developers/build/prebuilts/gradle/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
RecipeActivity.java 35 import org.json.JSONObject;
  /developers/samples/android/wearable/wear/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
RecipeActivity.java 35 import org.json.JSONObject;
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
SyncAdapter.java 25 import org.json.JSONException;
  /development/samples/browseable/RecipeAssistant/Application/src/com.example.android.wearable.recipeassistant/
RecipeActivity.java 35 import org.json.JSONObject;
  /external/autotest/frontend/client/src/autotest/afe/
AfeClient.java 21 import com.google.gwt.json.client.JSONValue;
  /external/autotest/frontend/client/src/autotest/common/table/
SelectionManager.java 8 import com.google.gwt.json.client.JSONObject;
TableDecorator.java 10 import com.google.gwt.json.client.JSONObject;
  /external/autotest/frontend/client/src/autotest/common/ui/
DetailView.java 12 import com.google.gwt.json.client.JSONObject;
  /external/autotest/frontend/client/src/autotest/tko/
SpreadsheetHeaderSelect.java 9 import com.google.gwt.json.client.JSONObject;
SpreadsheetView.java 27 import com.google.gwt.json.client.JSONArray;
28 import com.google.gwt.json.client.JSONObject;
29 import com.google.gwt.json.client.JSONString;
30 import com.google.gwt.json.client.JSONValue;
  /external/autotest/scheduler/shard/
simple_heartbeat_server.py 20 /lumpy?raw: Return raw json heartbeat packets for lumpy
51 # Indent level used when formatting json for the browser.
192 from django.core.serializers import json as django_encoder
  /external/chromium-trace/catapult/dashboard/dashboard/
graph_json.py 5 """Serves JSON for a graph.
7 This serves the JSON in the format consumed by Flot:
13 import json
50 graphs: A JSON serialization of a dict that contains the arguments
54 JSON serialization of data to be used for plotting a graph.
59 self.ReportError('Bad Graph JSON Request')
67 whose value is a JSON serialization of a dict of parameters.
78 graphs = json.loads(graphs)
80 logging.error('Invalid JSON string for graphs')
102 """Makes a JSON serialization of data for one chart with multiple series
    [all...]
stats.py 16 import json
215 'axis_map': json.dumps(axis_map),
216 'overall_summaries': json.dumps(overall_summaries),
217 'daily_summaries': json.dumps(daily_summaries),
  /external/chromium-trace/catapult/systrace/bin/
adb_profile_chrome_startup 97 write_json=options.json)
  /external/chromium-trace/catapult/third_party/coverage/coverage/
data.py 7 import json
89 # The data file format is JSON, with these keys:
312 return json.load(file_obj)
406 must be JSON serializable. You may use this function more than once,
452 json.dump(file_data, file_obj)
719 """Canonicalize our JSON data so it can be compared."""
727 """Format data as JSON, but as nicely as possible.
732 # Start with a basic JSON dump.
733 out = json.dumps(data, indent=4, sort_keys=True)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/scripts/
oauth2l_test.py 3 import json
29 self.content = json.dumps({'scope': ' '.join(scopes or [])})
107 output = _GetCommandOutput(self, 'fetch', self._Args('json'))
230 'testdata/noninstalled_client_secrets.json')
241 os.path.dirname(__file__), 'testdata/fake_client_secrets.json')
297 self.assertEqual(json.dumps(user_info, indent=4), output)
309 self.assertEqual(json.dumps(user_info, separators=(',', ':')),
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/dynamodb2/
test_highlevel.py 39 import json
41 import simplejson as json
512 'forum_test_data.json'
515 data = json.load(test_data)
553 'forum_test_data.json'
556 data = json.load(test_data)
  /external/chromium-trace/catapult/third_party/typ/typ/tests/
main_test.py 16 import json
262 'full_results.json'],
267 results = json.loads(files['full_results.json'])
587 'Uploading the JSON results raised '
602 'Uploading the JSON results raised .*\n'))
633 'results.json'], files=PASS_TEST_FILES)
634 self.assertIn('results.json', files)
635 results = json.loads(files['results.json'])
    [all...]
  /external/chromium-trace/catapult/third_party/webtest/webtest/
utils.py 4 from json import dumps
22 ``params`` are dumped to json and put in the body of the request.
23 Content-Type is set to ``application/json``.
29 content_type = 'application/json'
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONTokener.java 1 package com.google.polo.json;
9 Copyright (c) 2002 JSON.org
35 * JSON source strings.
36 * @author JSON.org
226 * Backslash processing is done. The formal JSON format does not
  /external/libchrome/base/json/
json_parser.cc 5 #include "base/json/json_parser.h"
30 // This and the class below are used to own the JSON input string for when
37 DictionaryHiddenRootValue(std::string* json, Value* root) : json_(json) {
87 ListHiddenRootValue(std::string* json, Value* root) : json_(json) {
208 // If the children of a JSON root can be detached, then hidden roots cannot
227 // When the input JSON string starts with a UTF-8 Byte-Order-Mark
  /external/libweave/third_party/chromium/base/json/
json_parser.cc 5 #include "base/json/json_parser.h"
29 // This and the class below are used to own the JSON input string for when
36 DictionaryHiddenRootValue(std::string* json, Value* root) : json_(json) {
86 ListHiddenRootValue(std::string* json, Value* root) : json_(json) {
203 // If the children of a JSON root can be detached, then hidden roots cannot
222 // When the input JSON string starts with a UTF-8 Byte-Order-Mark
  /external/v8/test/mjsunit/
debug-compile-event.js 95 var json = event_data.toJSONProtocol();
96 var msg = safeEval(json);
122 compileSource('JSON.parse(\'{"a":1,"b":2}\')');
123 // Using JSON.parse does not causes additional compilation events.
debug-return-value.js 33 function ParsedResponse(json) {
34 this.response_ = eval('(' + json + ')');
112 // Check the same using the JSON commands.
debug-script.js 88 var date_delay_script = Debug.findScript('native json.js');
89 assertEquals('native json.js', date_delay_script.name);

Completed in 1742 milliseconds

<<31323334353637383940>>