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

<<31323334353637383940>>

  /external/v8/test/mjsunit/
mirror-script.js 33 // Create mirror and JSON representation.
36 var json = JSON.stringify(serializer.serializeValue(mirror));
66 // Parse JSON representation and check.
67 var fromJSON = JSON.parse(json);
mirror-unresolved-function.js 45 var json = JSON.stringify(serializer.serializeValue(mirror)); variable
47 JSON.stringify(serializer.serializeReferencedObjects()));
68 // Parse JSON representation of unresolved functions and check.
69 var fromJSON = eval('(' + json + ')');
70 assertEquals('function', fromJSON.type, 'Unexpected mirror type in JSON');
71 assertEquals('Function', fromJSON.className, 'Unexpected mirror class name in JSON');
72 assertEquals(mirror.constructorFunction().handle(), fromJSON.constructorFunction.ref, 'Unexpected constructor function handle in JSON');
73 assertEquals('undefined', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
74 assertEquals(mirror.protoObject().handle(), fromJSON.protoObject.ref, 'Unexpected proto object handle in JSON');
    [all...]
  /external/v8/tools/release/
auto_tag.py 95 revision_url = "https://v8-status.appspot.com/revisions?format=json"
98 for entry in json.loads(status_json) if entry["status"]]
  /external/vulkan-validation-layers/loader/
cJSON.h 73 /* Supply a block of JSON, and this returns a cJSON object you can interrogate.
156 /* ParseWithOpts allows you to require (and check) that the JSON is null
162 extern void cJSON_Minify(char *json);
  /frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/
BrowserService.java 54 import org.json.JSONException;
  /system/core/metricsd/
Android.mk 165 LOCAL_REQUIRED_MODULES := metrics.json
228 LOCAL_MODULE := metrics.json
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVXCheckAnalyzer.java 39 import org.json.JSONObject;
40 import org.json.JSONException;
112 * write Json format serialization to a file in case future processing need the data
124 * Get the JSON format serialization
125 *@return Json format serialization as String
161 Log.e(TAG, "Error in serialize analyze report to JSON");
164 Log.e(TAG, "Invalid parameter to write into JSON format");
276 // output report to file and log in JSON format as well
277 report.writeToFile(new File(mPath, "report.json"));
278 if (LOCAL_LOGV) Log.v(TAG, "Report in JSON:" + report.toString())
489 JSONObject json = new JSONObject(content); local
    [all...]
  /development/samples/Vault/src/com/example/android/vault/
EncryptedDocument.java 25 import org.json.JSONException;
26 import org.json.JSONObject;
  /external/autotest/client/cros/cellular/pseudomodem/
pseudomodem_context.py 14 import json
266 Dump a given python list to a temp file in json format.
277 json.dump(arg, arg_file)
  /external/autotest/frontend/client/src/autotest/common/table/
DataTable.java 12 import com.google.gwt.json.client.JSONObject;
13 import com.google.gwt.json.client.JSONValue;
  /external/autotest/frontend/client/src/autotest/tko/
CommonPanel.java 10 import com.google.gwt.json.client.JSONObject;
11 import com.google.gwt.json.client.JSONString;
  /external/autotest/server/cros/
telemetry_runner.py 5 import json
224 histogram_data = json.loads(histogram_json)
  /external/chromium-trace/catapult/dashboard/dashboard/
add_point_queue.py 7 import json
42 data: JSON encoding of a list of dictionaries. Each dictionary represents
48 data = json.loads(self.request.get('data'))
97 data: The request json.
124 row_dict: A dictionary obtained from the JSON that was received.
utils.py 9 import json
311 return 'config = %s\n' % json.dumps(
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/
util.py 7 import json
300 discovery_doc = json.loads(
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/utils/
test_utils.py 38 from boto.compat import json, _thread
252 self.assertEqual(list(response.values())[0], json.loads(valid_data))
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/
test_jwt.py 117 ({'status': '200'}, datafile('certs.json')),
129 ({'status': '404'}, datafile('certs.json')),
142 # Not json
232 json = credentials.to_json()
233 restored = Credentials.new_from_json(json)
  /external/chromium-trace/catapult/third_party/vinn/vinn/
_vinn.py 14 import json
57 return json.dumps(s)
  /external/fio/
Android.mk 27 iolog.c json.c libfio.c memalign.c profiles/act.c profiles/tiobench.c server.c \
  /external/jsoncpp/src/jsontestrunner/
main.cpp 6 /* This executable is used for testing parser/writer using real JSON files.
9 #include <json/json.h>
63 printValueTree(FILE* fout, Json::Value& value, const std::string& path = ".") {
64 if (value.hasComment(Json::commentBefore)) {
65 fprintf(fout, "%s\n", value.getComment(Json::commentBefore).c_str());
68 case Json::nullValue:
71 case Json::intValue:
75 Json::valueToString(value.asLargestInt()).c_str());
77 case Json::uintValue
    [all...]
  /external/libweave/src/
config.cc 11 #include <base/json/json_reader.h>
12 #include <base/json/json_writer.h>
config_unittest.cc 266 Invoke([](const std::string& json, const DoneCallback& callback) {
289 EXPECT_JSON_EQ(expected, *test::CreateValue(json));
  /external/sl4a/Utils/src/com/googlecode/android_scripting/
SimpleServer.java 21 import org.json.JSONException;
22 import org.json.JSONObject;
  /external/v8/build/
vs_toolchain.py 7 import json
21 json_data_file = os.path.join(script_dir, 'win_toolchain.json')
42 toolchain_data = json.load(tempf)
202 this revision. The update outputs a .json of the various configuration
222 '--output-json', json_data_file,
  /external/v8/test/mjsunit/es6/
generators-mirror.js 28 // Create mirror and JSON representation.
31 var json = JSON.stringify(serializer.serializeValue(mirror));
33 JSON.stringify(serializer.serializeReferencedObjects()));

Completed in 1307 milliseconds

<<31323334353637383940>>