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

1 2 3 45 6 7 8 91011>>

  /prebuilts/tools/common/m2/repository/com/google/http-client/google-http-client-jackson2/1.19.0/
google-http-client-jackson2-1.19.0.jar 
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/datapipeline/
layer1.py 24 from boto.compat import json
114 body=json.dumps(params))
151 body=json.dumps(params))
173 body=json.dumps(params))
213 body=json.dumps(params))
238 body=json.dumps(params))
262 body=json.dumps(params))
285 body=json.dumps(params))
305 body=json.dumps(params))
357 body=json.dumps(params)
    [all...]
  /external/autotest/frontend/client/src/autotest/common/
JsonRpcCallback.java 5 import com.google.gwt.json.client.JSONObject;
6 import com.google.gwt.json.client.JSONString;
7 import com.google.gwt.json.client.JSONValue;
  /external/autotest/frontend/client/src/autotest/common/table/
MultipleListFilter.java 3 import com.google.gwt.json.client.JSONArray;
4 import com.google.gwt.json.client.JSONString;
5 import com.google.gwt.json.client.JSONValue;
BooleanFilter.java 3 import com.google.gwt.json.client.JSONBoolean;
4 import com.google.gwt.json.client.JSONObject;
FieldFilter.java 3 import com.google.gwt.json.client.JSONObject;
4 import com.google.gwt.json.client.JSONValue;
  /external/chromium-trace/catapult/experimental/bisect_lib/
fetch_intervening_revisions.py 18 import json
25 '?format=json&n=%d')
47 ValueError: The response wasn't valid JSON.
48 KeyError: The JSON didn't contain the expected data.
68 response_dict = json.loads(response_json)
95 print json.dumps(revision_pairs)
  /external/chromium-trace/catapult/perf_insights/perf_insights/endpoints/cloud_mapper/
cancel.py 4 import json
20 self.response.out.write(json.dumps(response))
28 self.response.out.write(json.dumps(response))
status.py 4 import json
28 self.response.out.write(json.dumps(response))
  /prebuilts/tools/linux-x86_64/kythe/studio/
manifest2vname.py 19 """Tool to generate vnames.json file for kythe from Android repo
23 import json
27 # fallback patterns to be added to tail of vnames.json
28 tail = json.loads("""[
60 # add fallback vname patterns to end of json list.
63 # print the json vnames list to stdout
64 # can be used for debugging or pipe to vnames.json.
65 print(json.dumps(vnames, indent=2, separators=(',', ':')))
  /external/jetty/src/java/org/eclipse/jetty/util/ajax/
JSONPojoConvertorFactory.java 24 import org.eclipse.jetty.util.ajax.JSON.Convertor;
25 import org.eclipse.jetty.util.ajax.JSON.Output;
27 public class JSONPojoConvertorFactory implements JSON.Convertor
29 private final JSON _json;
32 public JSONPojoConvertorFactory(JSON json)
34 if (json==null)
38 _json=json;
44 * @param json The JSON instance to us
    [all...]
  /prebuilts/go/darwin-x86/doc/progs/
json5.go 8 "encoding/json"
14 dec := json.NewDecoder(os.Stdin)
15 enc := json.NewEncoder(os.Stdout)
  /prebuilts/go/linux-x86/doc/progs/
json5.go 8 "encoding/json"
14 dec := json.NewDecoder(os.Stdin)
15 enc := json.NewEncoder(os.Stdout)
  /external/autotest/frontend/client/src/autotest/tko/
TestViewDataSource.java 5 import com.google.gwt.json.client.JSONObject;
6 import com.google.gwt.json.client.JSONValue;
  /external/autotest/site_utils/
lxc_config_unittest.py 6 import json
20 """Test ssp_deploy_config.json can be validated.
25 deploy_configs = json.load(f)
  /external/chromium-trace/catapult/perf_insights/perf_insights/results/
json_output_formatter.py 4 import json
18 json.dump(d, self.output_file, indent=2)
  /external/chromium-trace/catapult/systrace/profile_chrome/
chrome_startup_controller_unittest.py 6 import json
26 json.loads(f.read())
  /external/chromium-trace/catapult/telemetry/telemetry/value/
histogram_util.py 12 import json
22 return GetHistogramBucketsFromRawValue(json.loads(histogram_json))
44 Both parameters and the returned result are json serializations.
46 start_histogram = json.loads(start_histogram_json)
53 histogram = json.loads(histogram_json)
78 return json.dumps(histogram)
84 The parameter is a list of json serializations and the returned result is a
85 json serialization too.
103 return json.dumps(result_histogram)
107 """Get a json serialization of a histogram.""
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/logs/
layer1.py 28 from boto.compat import json
139 body=json.dumps(params))
166 body=json.dumps(params))
182 body=json.dumps(params))
201 body=json.dumps(params))
220 body=json.dumps(params))
232 body=json.dumps(params))
268 body=json.dumps(params))
308 body=json.dumps(params))
348 body=json.dumps(params)
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/values/
GradientColorValue.java 3 import com.badlogic.gdx.utils.Json;
66 public void write (Json json) {
67 super.write(json);
68 json.writeValue("colors", colors);
69 json.writeValue("timeline", timeline);
73 public void read (Json json, JsonValue jsonData) {
74 super.read(json, jsonData);
75 colors = json.readValue("colors", float[].class, jsonData)
    [all...]
  /external/libweave/include/weave/test/
unittest_utils.h 20 std::unique_ptr<base::Value> CreateValue(const std::string& json);
24 // Helper method to create a JSON dictionary object from a string.
26 const std::string& json);
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
datastore_range_iterators.py 87 def from_json(cls, json):
88 return _RANGE_ITERATORS[json["name"]].from_json(json)
119 """Serializes all states into json form.
122 all states in json-compatible map.
127 def from_json(cls, json):
207 # Thus we will not add Cursor as a json primitive MR should understand.
209 def from_json(cls, json):
211 obj = cls(property_range.PropertyRange.from_json(json["property_range"]),
212 namespace_range.NamespaceRange.from_json_object(json["ns_range"])
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/
buildbucket_job_status.py 7 import json
28 status_text = json.dumps(original_status, sort_keys=True, indent=4)
32 status_text = json.dumps(clean_status, sort_keys=True, indent=4)
71 """Replaces values with json strings with objects parsed from them.
73 Certain nested json objects are returned as strings. We parse them to access
88 result[key.replace('_json', '')] = json.loads(
edit_anomaly_configs.py 7 import json
20 config: A JSON dictionary mapping config parameters to values.
33 'config': json.dumps(config.config, indent=2, sort_keys=True),
41 'anomaly_config_json': json.dumps(anomaly_configs),
56 config_dict = json.loads(config)
short_uri_test.py 5 import json
30 '/short_uri', {'page_state': json.dumps(sample_page_state)})
31 page_state_id = json.loads(response.body)['sid']
35 page_state = json.loads(response.body)

Completed in 1116 milliseconds

1 2 3 45 6 7 8 91011>>