/developers/build/prebuilts/gradle/Quiz/Application/src/main/java/com/example/android/wearable/quiz/ |
MainActivity.java | 66 import org.json.JSONArray; 67 import org.json.JSONException; 68 import org.json.JSONObject; 87 private static final String QUIZ_JSON_FILE = "Quiz.json"; 258 * Create a quiz, as defined in Quiz.json, when the user clicks on "Read quiz from file."
|
/developers/samples/android/wearable/wear/Quiz/Application/src/main/java/com/example/android/wearable/quiz/ |
MainActivity.java | 66 import org.json.JSONArray; 67 import org.json.JSONException; 68 import org.json.JSONObject; 87 private static final String QUIZ_JSON_FILE = "Quiz.json"; 258 * Create a quiz, as defined in Quiz.json, when the user clicks on "Read quiz from file."
|
/development/samples/Vault/src/com/example/android/vault/ |
VaultProvider.java | 42 import org.json.JSONArray; 43 import org.json.JSONException; 44 import org.json.JSONObject; 85 /** JSON key storing array of all children documents in a directory. */
|
/development/samples/browseable/Quiz/Application/src/com.example.android.wearable.quiz/ |
MainActivity.java | 66 import org.json.JSONArray; 67 import org.json.JSONException; 68 import org.json.JSONObject; 87 private static final String QUIZ_JSON_FILE = "Quiz.json"; 258 * Create a quiz, as defined in Quiz.json, when the user clicks on "Read quiz from file."
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
add_point.py | 8 import json 54 The row data comes from a "data" parameter, which is a JSON encoding of a 82 This API also supports the Dashboard JSON v1.0 format (go/telemetry-json), 84 serialization of values it produces, as JSON. If a dashboard JSON object is 87 Chart JSON dict (see design doc, and example below). Dashboard JSON v1.0 is 88 processed by converting it into rows (which can be viewed as Dashboard JSON 113 data: JSON encoding of a list of dictionaries [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/iam/ |
connection.py | 24 from boto.compat import json, six 54 ASSUME_ROLE_POLICY_DOCUMENT = json.dumps(DEFAULT_POLICY_DOCUMENTS['default']) [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/gcs-oauth2-boto-plugin/gcs_oauth2_boto_plugin/ |
oauth2_client.py | 37 import json 452 data = json.loads(s) 468 raise Exception('Your JSON credentials are invalid; ' 474 """An OAuth2 service account client using .json keys.""" 642 d = json.loads(content)
|
/external/libchrome/base/trace_event/ |
trace_config.cc | 11 #include "base/json/json_reader.h" 12 #include "base/json/json_writer.h" 155 std::string json; local 156 base::JSONWriter::Write(dict, &json); 158 return json;
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
ConnectivityManagerFacade.java | 41 import org.json.JSONArray; 42 import org.json.JSONException; 43 import org.json.JSONObject;
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/ |
WifiScannerFacade.java | 26 import org.json.JSONArray; 27 import org.json.JSONException; 28 import org.json.JSONObject; 513 * @param bssidInfos An array of json strings, each representing a BssidInfo object.
|
/external/sl4a/Common/src/com/googlecode/android_scripting/rpc/ |
MethodDescriptor.java | 40 import org.json.JSONArray; 41 import org.json.JSONException; 42 import org.json.JSONObject; 147 * Converts a parameter from JSON into a Java Object. 153 // problematic because you lose the ability to call the getXXX methods on the JSON array.
|
/frameworks/base/services/core/java/com/android/server/notification/ |
RankingHelper.java | 30 import org.json.JSONArray; 31 import org.json.JSONException; 32 import org.json.JSONObject; 467 * Dump only the ban information as structured JSON for the stats collector.
|
/prebuilts/go/darwin-x86/src/encoding/xml/ |
read_test.go | 510 Other3 string `xml:"http://golang.org/json/ other,attr,omitempty"` 511 Other4 string `xml:"http://golang.org/2/json/ other,attr,omitempty"` 610 want := `<TableAttrs><TAttr xmlns:html4="http://www.w3.org/TR/html4/" html4:table="hello" xmlns:furniture="http://www.w3schools.com/furniture" furniture:table="world" xml:lang="en_US" xmlns:_xml="http://golang.org/xml/" _xml:other="other1" xmlns:_xmlfoo="http://golang.org/xmlfoo/" _xmlfoo:other="other2" xmlns:json="http://golang.org/json/" json:other="other3" xmlns:json_1="http://golang.org/2/json/" json_1:other="other4"></TAttr></TableAttrs>`
|
/prebuilts/go/linux-x86/src/encoding/xml/ |
read_test.go | 510 Other3 string `xml:"http://golang.org/json/ other,attr,omitempty"` 511 Other4 string `xml:"http://golang.org/2/json/ other,attr,omitempty"` 610 want := `<TableAttrs><TAttr xmlns:html4="http://www.w3.org/TR/html4/" html4:table="hello" xmlns:furniture="http://www.w3schools.com/furniture" furniture:table="world" xml:lang="en_US" xmlns:_xml="http://golang.org/xml/" _xml:other="other1" xmlns:_xmlfoo="http://golang.org/xmlfoo/" _xmlfoo:other="other2" xmlns:json="http://golang.org/json/" json:other="other3" xmlns:json_1="http://golang.org/2/json/" json_1:other="other4"></TAttr></TableAttrs>`
|
/prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/ |
clover-3.1.12.jar | |
/prebuilts/tools/common/google-api-java-client/1.8.0-rc/ |
google-api-java-client-min-repackaged.jar | |
/external/chromium-trace/catapult/third_party/WebOb/webob/ |
response.py | 11 import simplejson as json 13 import json 90 if app_iter is None and body is None and ('json_body' in kw or 'json' in kw): 94 json_body = kw.pop('json') 95 body = json.dumps(json_body, separators=(',', ':')) 97 content_type = 'application/json' 124 or content_type.startswith('application/json') 126 and (content_type.endswith('+xml') or content_type.endswith('+json'))))): 388 """Access the body of the response as JSON""" 389 # Note: UTF-8 is a content-type specific default for JSON [all...] |
/libcore/ |
non_openjdk_java_files.mk | 232 json/src/main/java/org/json/JSON.java \ 233 json/src/main/java/org/json/JSONArray.java \ 234 json/src/main/java/org/json/JSONException.java \ 235 json/src/main/java/org/json/JSONObject.java \ 236 json/src/main/java/org/json/JSONStringer.java [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/ |
MockListener.java | 29 import org.json.JSONException; 30 import org.json.JSONObject;
|
NotificationListenerVerifierActivity.java | 29 import org.json.JSONException; 30 import org.json.JSONObject;
|
/external/autotest/client/cros/bluetooth/ |
bluetooth_semiauto_helper.py | 5 import json, logging, os, pwd, shutil, subprocess, time 324 f.write(json.dumps(self._get_objects().items(), indent=2))
|
/external/autotest/client/cros/cellular/pseudomodem/ |
pseudomodem.py | 16 import json 220 taken by |test_module|.|class_name| constructor in json. 223 ValueError if |arg_file| does not contain valid json 232 arg = json.load(arg_file) 396 help='Absolute path to the json description of argument list ' 409 help='Aboslute path to the json description of argument list ' 423 help='Absolute path to the json description of argument list '
|
/external/autotest/frontend/client/src/autotest/tko/ |
MetricsPlotFrontend.java | 13 import com.google.gwt.json.client.JSONObject; 14 import com.google.gwt.json.client.JSONString;
|
/external/autotest/server/ |
site_utils.py | 8 import json 209 @returns The JSON object obtained from the given URL. 223 return json.load(response) 231 Take a deserialized JSON object from the lab status page, and
|
/external/autotest/site_utils/deployment/ |
install.py | 52 import json 80 _OMAHA_STATUS = 'gs://chromeos-build-release-console/omaha_status.json' 99 Open and read through the JSON file provided by GoldenEye that 113 omaha_status = json.load(sp.stdout)
|