/external/autotest/frontend/client/src/autotest/afe/ |
TestSelector.java | 17 import com.google.gwt.json.client.JSONArray; 18 import com.google.gwt.json.client.JSONObject;
|
/external/autotest/frontend/client/src/autotest/tko/ |
SpreadsheetDataProcessor.java | 13 import com.google.gwt.json.client.JSONArray; 14 import com.google.gwt.json.client.JSONObject;
|
/external/autotest/server/cros/dynamic_suite/ |
reporting_utils.py | 2 import json 282 Metadata.json is created in the HWTest Archiving stage, if this file 284 specified in the GSContext object. If metadata.json exists we parse 285 a json string of it's contents into a dictionary, which we return. 289 @returns: A dictionary with the contents of metadata.json. 298 gs_cmd = '%s%s%s/metadata.json' % (_gs_file_prefix, 301 return json.loads(gs_context.Cat(gs_cmd)) 315 enough information from metadata.json (or it doesn't exist).
|
/external/autotest/server/site_tests/autoupdate_EndToEndTest/ |
update_engine_performance_monitor.py | 7 import json 23 performance data as a JSON document when done. It can be run in 136 @return a string with JSON data or None if the timeout 149 return json.dumps({'rss_peak': self.rss_peak}) 234 # called. When that happes, write the JSON result to the FIFO. 261 # wait for it to write the JSON result on the FIFO. 275 # JSON on stdout. This is useful for hacking on this script,
|
/external/autotest/site_utils/ |
lxc_config.py | 8 files based on the settings. The setting file has a json string of a list of 55 import json 70 'ssp_deploy_config.json') 72 'ssp_deploy_shadow_config.json') 147 deploy_configs = json.load(f)
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
issue_tracker_service.py | 7 import json 230 if request_error.resp.get('content-type', '').startswith('application/json'): 231 error_json = json.loads(request_error.content).get('error')
|
rietveld_service.py | 7 import json 246 'builders': json.dumps({bot: ['defaulttests']}),
|
/external/chromium-trace/catapult/perf_insights/perf_insights/endpoints/cloud_mapper/ |
worker.py | 7 import json 74 traces = json.loads(self.request.get('traces'))
|
/external/chromium-trace/catapult/perf_insights/perf_insights/ |
map_runner.py | 4 import json 129 json.dump(current_result.AsDict(), results_file)
|
/external/chromium-trace/catapult/systrace/profile_chrome/third_party/ |
perf_to_tracing.py | 1 # Script for converting perf script events into tracing JSON. 6 import json 248 json.dump(trace_dict, sys.stdout, indent=1)
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/ |
strace_profiler.py | 5 import json 48 """Returns chrometrace json format for |infile| strace output.""" 209 self._output_file = output_path + '.json' 251 f.write(json.dumps(out_json, separators=(',', ':')))
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/results/ |
json_output_formatter_unittest.py | 4 import json 56 json.loads(self._output.getvalue())
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/ |
downloads_test.py | 7 import json 167 download_data = json.dumps({
|
uploads_test.py | 7 import json 135 upload_data = json.dumps(self.__upload.serialization_data)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/cloudwatch/ |
alarm.py | 26 from boto.compat import json 313 self.data = json.loads(value)
|
/external/chromium-trace/catapult/third_party/html5lib-python/doc/ |
make.bat | 25 echo. json to make JSON files 95 if "%1" == "json" ( 96 %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json 99 echo.Build finished; now you can process the JSON files.
|
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/ |
test_serializer.py | 3 import json 72 attributes, but JSON cannot represent this. Convert from the format 176 tests = json.load(fp)
|
test_tokenizer.py | 3 import json 210 tests = json.load(fp)
|
/external/chromium-trace/catapult/third_party/typ/typ/ |
json_results.py | 17 import json 65 """Convert the typ results to the Chromium JSON test result format. 67 See http://www.chromium.org/developers/the-json-test-results-format 176 'filename="full_results.json"') 177 lines.append('Content-Type: application/json') 179 lines.append(json.dumps(test_results))
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/ |
TexturePackerFileProcessor.java | 22 import com.badlogic.gdx.utils.Json; 39 private Json json = new Json(); field in class:TexturePackerFileProcessor 62 // Collect pack.json setting files. 69 settingsProcessor.addInputRegex("pack\\.json"); 102 json.readFields(settings, new JsonReader().parse(new FileReader(settingsFile))); 112 File settingsFile = new File(root, "pack.json");
|
/external/libweave/src/ |
access_api_handler_unittest.cc | 48 .WillRepeatedly(Invoke([this](const std::string& json) { 49 EXPECT_TRUE(component_manager_.LoadTraits(json, nullptr));
|
base_api_handler_unittest.cc | 35 .WillRepeatedly(Invoke([this](const std::string& json) { 36 EXPECT_TRUE(component_manager_.LoadTraits(json, nullptr));
|
component_manager_impl.h | 25 // Same as the overload above, but takes a json string to read the trait 27 bool LoadTraits(const std::string& json, ErrorPtr* error) override; 76 // Parses the command definition from a json dictionary. The resulting command 123 // Returns the full JSON dictionary containing trait definitions. 126 // Returns the full JSON dictionary containing component instances. 136 const std::string& json, 189 // A helper method to find a JSON element of component at |path| to add new
|
/external/skia/bench/ |
gen_bench_expectations.py | 10 import json 109 'https://skia.googlesource.com/skia/+log/%s?format=json&n=%d' % 112 # so json can be read successfully 114 json_data = json.loads(trunc_list)
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/ |
TelephonyEvents.java | 19 import org.json.JSONException; 20 import org.json.JSONObject;
|