OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:json_dict
(Results
1 - 8
of
8
) sorted by null
/external/skia/tools/
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/
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/autotest/frontend/afe/json_rpc/
serviceHandler.py
164
json_dict
= {'result': result_dict['result'],
167
data = json_encoder.encode(
json_dict
)
/external/chromium-trace/catapult/dependency_manager/dependency_manager/
base_config.py
374
json_dict
= cls._GetJsonDict(dependencies)
380
json_dict
, outfile, indent=2, sort_keys=True, separators=(',', ': '))
381
return
json_dict
386
json_dict
= {'config_type': cls.GetConfigType(),
388
return
json_dict
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
)
[
all
...]
/external/tensorflow/tensorflow/tools/docs/
parser.py
195
json_dict
= json.load(f)
197
return cls(doc_index=doc_index, **
json_dict
)
205
json_dict
= {}
215
json_dict
[key.lstrip('_')] = value
218
json.dump(
json_dict
, f)
[
all
...]
/external/autotest/server/cros/ap_configurators/
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/autotest/client/cros/enterprise/
enterprise_policy_base.py
627
def _decode_dict(
json_dict
):
629
for key, value in
json_dict
.iteritems():
Completed in 651 milliseconds