Searched refs:json_dict (Results 1 – 11 of 11) sorted by relevance
/external/grpc-grpc/tools/buildgen/ |
D | mako_renderer.py | 61 json_dict = {} 101 assert json_dict == {} 112 bunch.merge_json(json_dict, yaml.load(dict_file.read())) 120 plugin.mako_plugin(json_dict) 123 yaml_file.write(yaml.dump(json_dict)) 124 for k, v in json_dict.items():
|
/external/skia/tools/ |
D | jsondiff.py | 81 json_dict = gm_json.LoadFromString(contents) 82 all_expectations = json_dict[gm_json.JSONKEY_EXPECTEDRESULTS] 126 json_dict = gm_json.LoadFromString(contents) 127 all_result_types = json_dict[gm_json.JSONKEY_ACTUALRESULTS]
|
/external/skqp/tools/ |
D | jsondiff.py | 81 json_dict = gm_json.LoadFromString(contents) 82 all_expectations = json_dict[gm_json.JSONKEY_EXPECTEDRESULTS] 126 json_dict = gm_json.LoadFromString(contents) 127 all_result_types = json_dict[gm_json.JSONKEY_ACTUALRESULTS]
|
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
D | base_config.py | 402 json_dict = cls._GetJsonDict(dependencies) 408 json_dict, outfile, indent=2, sort_keys=True, separators=(',', ': ')) 409 return json_dict 414 json_dict = {'config_type': cls.GetConfigType(), 416 return json_dict
|
D | base_config_unittest.py | 189 json_dict = dependency_manager.BaseConfig._GetJsonDict() 190 self.assertEqual(expected_json_dict, json_dict) 195 json_dict = dependency_manager.BaseConfig._GetJsonDict(self.dependencies) 196 self.assertEqual(expected_json_dict, json_dict)
|
/external/autotest/frontend/afe/json_rpc/ |
D | serviceHandler.py | 164 json_dict = {'result': result_dict['result'], 167 data = json_encoder.encode(json_dict)
|
/external/vulkan-validation-layers/scripts/ |
D | vk_validation_stats.py | 197 self.json_dict = {} 200 self.json_dict = json.load(json_file) 202 if len(self.json_dict) == 0: 206 version = self.json_dict['version info'] 207 validation = self.json_dict['validation']
|
/external/autotest/server/cros/ap_configurators/ |
D | dynamic_ap_configurator.py | 256 json_dict = json.loads(response.read()) 257 if json_dict['status'] == 0: 259 session_url = os.path.join(url, json_dict['sessionId'])
|
/external/tensorflow/tensorflow/tools/docs/ |
D | parser.py | 231 json_dict = json.load(f) 233 return cls(doc_index=doc_index, **json_dict) 245 json_dict = {} 255 json_dict[key.lstrip('_')] = value 258 json.dump(json_dict, f, indent=2, sort_keys=True)
|
/external/autotest/client/cros/enterprise/ |
D | enterprise_policy_base.py | 1066 def _decode_dict(json_dict): argument 1068 for key, value in json_dict.iteritems():
|
/external/autotest/client/cros/power/ |
D | power_status.py | 1598 def to_checkpoint_data(json_dict): argument 1607 for tname, tlist in json_dict.iteritems():
|