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

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/client/common_lib/cros/fake_device_server/client_lib/
oauth_helpers.py 8 import json
41 auth_result = json.loads(url_h.read())
59 auth_result = json.loads(url_h.read())
  /external/autotest/frontend/client/src/autotest/afe/
LabelFilter.java 7 import com.google.gwt.json.client.JSONArray;
8 import com.google.gwt.json.client.JSONString;
9 import com.google.gwt.json.client.JSONValue;
HostTableDecorator.java 12 import com.google.gwt.json.client.JSONArray;
13 import com.google.gwt.json.client.JSONBoolean;
14 import com.google.gwt.json.client.JSONObject;
15 import com.google.gwt.json.client.JSONString;
16 import com.google.gwt.json.client.JSONValue;
  /external/autotest/site_utils/chromeos_proxy/
bot_config.py 30 import json
103 path = os.path.join(work_dir, 'task_runner_in.json')
106 manifest = json.load(f)
113 f.write(json.dumps(manifest))
  /external/chromium-trace/catapult/dashboard/dashboard/
get_logs_test.py 5 import json
36 response_logs = json.loads(response.body)
49 response_logs = json.loads(response.body)
  /external/chromium-trace/catapult/devil/devil/android/
device_blacklist.py 5 import json
29 blacklist = json.load(f)
44 json.dump(blacklist, f)
  /external/chromium-trace/catapult/telemetry/
json_format 6 import json
13 json_obj = json.load(f)
15 return json.dumps(
24 'Reformat your JSON file by running: %s --format %s' %
26 print >> sys.stdout, ('%s passes the JSON format validation' % file_path)
36 description = """A JSON formatting tool.
38 This is a tool that validate and reformats JSON file so that it complies with
39 a certain style. The JSON style imposed by this tool is:
40 * JSON array elements and object members are indented with 2 spaces.
46 parser.add_argument('file_path', type=str, help='The path to JSON file.'
    [all...]
  /external/chromium-trace/catapult/third_party/WebOb/docs/jsonrpc-example-code/
jsonrpc.py 10 Serve the given object via json-rpc (http://json-rpc.org/)
32 json = loads(req.body)
34 raise ValueError('Bad JSON: %s' % e)
36 method = json['method']
37 params = json['params']
38 id = json['id']
41 "JSON body missing parameter: %s" % e)
65 content_type='application/json',
70 content_type='application/json',
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/kms/
test_kms.py 23 from boto.compat import json
42 body = json.loads(self.actual_request.body)
61 body=json.dumps(content).encode('utf-8'))