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

<<11121314151617181920>>

  /external/autotest/frontend/client/src/autotest/common/
StaticDataRepository.java 4 import com.google.gwt.json.client.JSONObject;
5 import com.google.gwt.json.client.JSONValue;
6 import com.google.gwt.json.client.JSONArray;
XhrJsonRpcProxy.java 9 import com.google.gwt.json.client.JSONException;
10 import com.google.gwt.json.client.JSONObject;
11 import com.google.gwt.json.client.JSONParser;
12 import com.google.gwt.json.client.JSONValue;
  /external/autotest/frontend/client/src/autotest/common/table/
DynamicTableSelectionManager.java 7 import com.google.gwt.json.client.JSONArray;
8 import com.google.gwt.json.client.JSONNumber;
9 import com.google.gwt.json.client.JSONObject;
  /external/chromium-trace/catapult/catapult_build/
print_project_info 9 import json
70 print json.dumps(project.source_paths)
76 print json.dumps(headless_test_module_filenames)
  /external/chromium-trace/catapult/dashboard/dashboard/
bisect_stats.py 8 import json
42 'series_data': json.dumps(series_data),
43 'total_series_data': json.dumps(total_series_data),
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_cors.py 19 import json
73 cors_json_obj = json.loads(cors_doc)
79 cors_json_obj2 = json.loads(cors_doc2)
89 self.assertEqual(json.loads(json_text), json.loads(converted_json_text))
119 self.assertEqual(json.loads(stdout), self.cors_json_obj)
143 self.assertEqual(json.loads(stdout), self.valid_cors_obj)
159 self.assertEqual(json.loads(stdout), self.cors_json_obj2)
176 self.assertEqual(json.loads(stdout), self.cors_json_obj)
179 self.assertEqual(json.loads(stdout), self.cors_json_obj
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
dynamodb_dump 8 from boto.compat import json
28 json.dump(
40 # JSON can't serialize sets -- convert those to lists.
48 data_fd.write(json.dumps(data))
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/cloudformation/
test_connection.py 3 import json
120 template_body=json.dumps(BASIC_EC2_TEMPLATE),
150 template_body=json.dumps(BASIC_EC2_TEMPLATE),
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/closure/
json.js 16 * @fileoverview JSON utility functions.
20 goog.provide('goog.json');
21 goog.provide('goog.json.Serializer');
25 * Tests if a string is an invalid JSON string. This only ensures that we are
28 * @return {boolean} True if the input is a valid JSON string.
31 goog.json.isValid_ = function(s) {
37 // This is taken from http://www.json.org/json2.js which is released to the
44 // e.g. http://www.json.org/java/org/json/JSONObject.java
47 // against regular expressions that look for non-JSON patterns. We ar
    [all...]
  /external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/
securecookie.py 17 from webapp2_extras import json
92 return json.b64encode(value)
95 return json.b64decode(value)
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/messagereader/
messagereader.cpp 1 // Reading a message JSON with Reader (SAX-style API).
2 // The JSON should be an object with key-string pairs.
66 void ParseMessages(const char* json, MessageMap& messages) {
69 StringStream ss(json);
76 cout << " at offset " << o << " near '" << string(json).substr(o, 10) << "...'" << endl;
90 cout << endl << "Parse a JSON with invalid schema." << endl;
  /tools/test/connectivity/acts/framework/acts/
jsonrpc.py 18 A simple JSON RPC client.
20 import json
31 """A counter that generates JSON RPC call IDs.
43 headers = {'content-type': 'application/json'}
59 The returned message of the JSON RPC call from the server.
69 """Performs an HTTP POST request with a JSON payload.
73 payload: A JSON string to be posted to server.
79 req.add_header('Content-Type', 'application/json')
85 """Performs a JSON RPC call and return the response.
93 The returned message of the JSON RPC call from the server
    [all...]
  /cts/apps/CameraITS/pymodules/its/
target.py 21 import json
23 import json
94 The value is persisted in a JSON file in the current directory (from which
102 f.write(json.dumps({"exposure":exposure}))
112 o = json.load(f)
  /device/google/contexthub/util/nanotool/
calibrationfile.cpp 24 constexpr char kCalibrationFile[] = "/persist/sensorcal.json";
59 sp<JSONCompound> json = JSONCompound::Parse(file_data.data(), file_size); local
60 if (json == nullptr || !json->isObject()) {
69 json_root_ = reinterpret_cast<JSONObject*>(json.get());
  /external/autotest/
.gitignore 71 ssp_deploy_shadow_config.json
74 tko/perf_upload/perf_dashboard_shadow_config.json
  /external/autotest/frontend/client/src/autotest/afe/models/
Host.java 5 import com.google.gwt.json.client.JSONObject;
  /external/autotest/frontend/client/src/autotest/tko/
TestGroupDataSource.java 7 import com.google.gwt.json.client.JSONArray;
8 import com.google.gwt.json.client.JSONObject;
9 import com.google.gwt.json.client.JSONString;
10 import com.google.gwt.json.client.JSONValue;
  /external/autotest/frontend/static/
jsonview.css 83 #json {
98 /* Indent JSON when there's a callback. */
99 .callback + #json {
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/dynamodb/
layer1.py 31 from boto.compat import json
39 of the JSON input as defined in the DynamoDB Developer's Guide.
40 All responses are direct decoding of the JSON response bodies to
41 Python data structures via the json or simplejson modules.
112 'Content-Type': 'application/x-amz-json-1.0',
127 return json.loads(response_body, object_hook=object_hook)
134 data = json.loads(response_body)
205 json_input = json.dumps(data)
218 json_input = json.dumps(data)
244 json_input = json.dumps(data
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/scripts/
run_system_tests.py 1 import json
48 payload = json.loads(content)
55 client_credentials = json.load(file_object)
83 client_credentials = json.load(file_object)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/doc/
Makefile 15 .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest
25 @echo " json to make JSON files"
61 json:
62 $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
64 @echo "Build finished; now you can process the JSON files."
  /external/clang/docs/analyzer/
Makefile 17 .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext
27 @echo " json to make JSON files"
66 json:
67 $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
69 @echo "Build finished; now you can process the JSON files."
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/
WireFormat.java 20 import com.google.polo.wire.json.JsonWireAdapter;
29 JSON, // JSON, implemented by JsonWireInterface
42 case JSON:
  /external/jsoncpp/test/
pyjsontestrunner.py 1 # Simple implementation of a json test runner to run the test against json-py.
5 import json
9 print("Usage: %s input-json-file", sys.argv[0])
47 root = json.loads( input )
54 rewrite = json.dumps( value )
61 rewrite = rewriteValueTree( json.write( root ), rewrite_path )
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/influencers/
SpawnInfluencer.java 9 import com.badlogic.gdx.utils.Json;
63 public void write (Json json) {
64 json.writeValue("spawnShape", spawnShapeValue, SpawnShapeValue.class);
68 public void read (Json json, JsonValue jsonData) {
69 spawnShapeValue = json.readValue("spawnShape", SpawnShapeValue.class, jsonData);

Completed in 974 milliseconds

<<11121314151617181920>>