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

<<21222324252627282930>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_check_circular.py 1 from json.tests import PyTest, CTest
  /system/weaved/common/
binder_utils.h 61 const android::String16& json,
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudfront/
test_signed_urls.py 3 from boto.compat import StringIO, six, json
192 policy = json.loads(policy)
215 policy = json.loads(policy)
238 policy = json.loads(policy)
262 policy = json.loads(policy)
286 policy = json.loads(policy)
314 policy = json.loads(policy)
  /external/libchrome/base/metrics/
statistics_recorder_unittest.cc 10 #include "base/json/json_reader.h"
265 std::string json(StatisticsRecorder::ToJSON(std::string()));
267 // Check for valid JSON.
268 scoped_ptr<Value> root = JSONReader::Read(json);
291 json = StatisticsRecorder::ToJSON(query);
293 root = JSONReader::Read(json);
310 json.clear();
314 json = StatisticsRecorder::ToJSON(query);
315 EXPECT_TRUE(json.empty());
  /external/autotest/client/cros/bluetooth/
bluetooth_device_xmlrpc_server.py 11 import json
351 @return the properties as a JSON-encoded dictionary on success,
358 return json.dumps(adapter)
364 @return the information as a JSON-encoded tuple of:
368 return json.dumps(self._control.read_version())
374 @return the information as a JSON-encoded tuple of:
378 return json.dumps(self._control.read_supported_commands())
384 @return the information as a JSON-encoded array of controller indexes.
387 return json.dumps(self._control.read_index_list())
393 @return the information as a JSON-encoded tuple of
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
RecurringView.java 17 import com.google.gwt.json.client.JSONArray;
18 import com.google.gwt.json.client.JSONNumber;
19 import com.google.gwt.json.client.JSONObject;
20 import com.google.gwt.json.client.JSONString;
21 import com.google.gwt.json.client.JSONValue;
HostListView.java 12 import com.google.gwt.json.client.JSONArray;
13 import com.google.gwt.json.client.JSONObject;
  /external/autotest/frontend/client/src/autotest/tko/
SavedQueriesControl.java 16 import com.google.gwt.json.client.JSONArray;
17 import com.google.gwt.json.client.JSONNumber;
18 import com.google.gwt.json.client.JSONObject;
19 import com.google.gwt.json.client.JSONString;
20 import com.google.gwt.json.client.JSONValue;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
multistore_file.py 17 This module implements a JSON credential store where multiple
39 # JSON serialized Credentials.
50 import json
81 filename: The JSON file storing a set of credentials
107 filename: The JSON file storing a set of credentials
130 filename: The JSON file storing a set of credentials
150 filename: The JSON file storing a set of credentials
171 filename: The JSON file storing a set of credentials
324 The contents of the multistore decoded as JSON.
328 return json.load(self._file.file_handle()
    [all...]
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
input_readers.py 156 An instance of the InputReader configured using the values of json.
164 A json-izable version of the remaining InputReader.
294 """Serializes input reader to json compatible format.
297 all the data in json-compatible map.
302 def from_json(cls, json):
303 """Create new DatastoreInputReader from json, encoded by to_json.
306 json: json representation of DatastoreInputReader.
309 an instance of DatastoreInputReader with all data deserialized from json.
311 return cls(db_iters.RangeIteratorFactory.from_json(json))
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/
test_connection.py 29 from boto.compat import json, parse_qs
233 json.dumps({'test': 'secure'}),
234 content_type='application/json')
244 json.dumps({'test': 'secure'}),
245 content_type='application/json')
265 json.dumps({'test': 'insecure'}),
266 content_type='application/json')
287 json.dumps({'test': 'secure'}),
288 content_type='application/json')
310 json.dumps({'test': 'secure'})
    [all...]
  /external/libweave/src/
device_registration_info.cc 14 #include <base/json/json_reader.h>
15 #include <base/json/json_writer.h>
58 void ParseGCDError(const base::DictionaryValue* json, ErrorPtr* error) {
61 if (!json->Get("error.errors", &list_value) ||
164 void SetJsonData(const base::Value& json) {
166 CHECK(base::JSONWriter::Write(json, &data));
194 // binary files, or HTML output. Limit to application/json and text/plain.
204 const std::string& json = response.GetData(); local
206 auto value = base::JSONReader::ReadAndReturnError(json, base::JSON_PARSE_RFC,
209 Error::AddToPrintf(error, FROM_HERE, errors::json::kParseError
402 auto json = ParseOAuthResponse(*response, &error); local
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/html/
HtmlActivityTask.java 59 import org.json.JSONArray;
60 import org.json.JSONException;
61 import org.json.JSONObject;
261 final JSONObject json = new JSONObject(); local
263 json.put("data", JsonBuilder.build(event.getData()));
272 mView.loadUrl(String.format("javascript:droid._callback(%d, %s);", id, json));
  /external/v8/test/mjsunit/
debug-mirror-cache.js 60 var json;
61 json = '{"seq":0,"type":"request","command":"backtrace"}'
62 dcp.processDebugJSONRequest(json);
  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/page/
PageAndListRowFragment.java 203 String json = Utils.inputStreamToString(getResources().openRawResource( local
205 CardRow cardRow = new Gson().fromJson(json, CardRow.class);
241 String json = Utils.inputStreamToString(getResources().openRawResource( local
243 CardRow[] rows = new Gson().fromJson(json, CardRow[].class);
286 String json = Utils.inputStreamToString(getResources().openRawResource( local
288 CardRow cardRow = new Gson().fromJson(json, CardRow.class);
  /frameworks/support/samples/SupportLeanbackShowcase/libs/
gson-1.7.2.jar 
  /cts/common/host-side/util/
Android.mk 23 LOCAL_JAVA_LIBRARIES := json-prebuilt tradefed-prebuilt
  /cts/common/host-side/util/tests/
Android.mk 21 LOCAL_JAVA_LIBRARIES := compatibility-host-util junit json-prebuilt
  /cts/tests/tests/assist/common/src/android/assist/common/
Utils.java 22 import org.json.JSONException;
23 import org.json.JSONObject;
  /developers/build/prebuilts/gradle/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
Alarm.java 23 import org.json.JSONException;
24 import org.json.JSONObject;
78 * Serialize the instance as a JSON String.
79 * @return serialized JSON String.
90 throw new IllegalStateException("Failed to convert the object to JSON");
96 * Parses a Json string to an {@link Alarm} instance.
  /developers/samples/android/security/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
Alarm.java 23 import org.json.JSONException;
24 import org.json.JSONObject;
78 * Serialize the instance as a JSON String.
79 * @return serialized JSON String.
90 throw new IllegalStateException("Failed to convert the object to JSON");
96 * Parses a Json string to an {@link Alarm} instance.
  /development/samples/browseable/DirectBoot/src/com.example.android.directboot/alarms/
Alarm.java 23 import org.json.JSONException;
24 import org.json.JSONObject;
78 * Serialize the instance as a JSON String.
79 * @return serialized JSON String.
90 throw new IllegalStateException("Failed to convert the object to JSON");
96 * Parses a Json string to an {@link Alarm} instance.
  /device/intel/edison/build/tasks/
flashfiles.mk 26 EDISON_FLASHFILES += $(EDISON_TOOLS)/FlashEdison.json \
  /external/autotest/client/site_tests/buffet_BasicDBusAPI/
buffet_BasicDBusAPI.py 7 import json
78 parsed_state = json.loads(raw_state)
  /external/autotest/client/site_tests/security_RootCA/
security_RootCA.py 5 import glob, json, logging, os, re, stat
39 @param baseline_file: name of JSON file containing baseline.
43 raw_baselines = json.load(baseline_file)

Completed in 5394 milliseconds

<<21222324252627282930>>