HomeSort by relevance Sort by last modified time
    Searched refs:json_dict (Results 1 - 11 of 11) sorted by null

  /external/skia/gm/
gm_json.py 116 json_dict = json.loads(file_contents)
117 return json_dict
126 def WriteToFile(json_dict, file_path):
127 """Writes the JSON summary in json_dict out to file_path."""
129 json.dump(json_dict, outfile, sort_keys=True, indent=2)
display_json_results.py 97 json_dict = gm_json.LoadFromFile(filepath)
98 actual_results = json_dict[gm_json.JSONKEY_ACTUALRESULTS]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
layouttestresults.py 95 json_dict = json.loads(content_string)
96 if not json_dict:
98 return cls(json_dict)
  /external/skia/tools/
jsondiff.py 81 json_dict = gm_json.LoadFromString(contents)
82 all_expectations = json_dict[gm_json.JSONKEY_EXPECTEDRESULTS]
127 json_dict = gm_json.LoadFromString(contents)
128 all_result_types = json_dict[gm_json.JSONKEY_ACTUALRESULTS]
rebaseline.py 255 json_dict = gm_json.LoadFromString(json_contents)
257 actual_results = json_dict[gm_json.JSONKEY_ACTUALRESULTS]
  /external/chromium_org/chromeos/network/
network_connection_handler_unittest.cc 69 scoped_ptr<base::DictionaryValue> json_dict = local
71 if (!json_dict) {
76 *json_dict,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/
bot_test_expectations_unittest.py 66 json_dict = {
69 return bot_test_expectations.ResultsJSON('builder', json_dict)
bot_test_expectations.py 79 def __init__(self, builder_name, json_dict):
81 self._json = json_dict
  /external/skia/gm/rebaseline_server/
server.py 486 def send_json_dict(self, json_dict):
491 json_dict: dictionary to send
496 json.dump(json_dict, self.wfile)
  /external/chromium_org/chrome/test/pyautolib/
remote_inspector_client.py 93 json_dict = {}
94 json_dict['method'] = self.method
95 json_dict['id'] = self.id
97 json_dict['params'] = self.params
98 return simplejson.dumps(json_dict, separators=(',', ':'))
    [all...]
  /external/chromium_org/chrome/test/chromedriver/
run_buildbot_steps.py 99 json_dict = json.load(log_file)
101 return dict([(int(v[0]), v[1]) for v in json_dict.items()])

Completed in 206 milliseconds