Home
last modified time | relevance | path

Searched refs:json_obj (Results 1 – 3 of 3) sorted by relevance

/external/v8/tools/
Dturbolizer-perf.py18 json_obj['eventCounts'] = {}
20 for phase in reversed(json_obj['phases']):
28 print json.dumps(json_obj)
38 if ev_name not in json_obj['eventCounts']:
39 json_obj['eventCounts'][ev_name] = {}
40 if addr not in json_obj['eventCounts'][ev_name]:
41 json_obj['eventCounts'][ev_name][addr] = 0
42 json_obj['eventCounts'][ev_name][addr] += 1
54 json_obj = json.load(json_file) variable
/external/autotest/tko/perf_upload/
Dperf_uploader_unittest.py102 json_obj = []
105 json_obj = json.load(fp)
109 name_set = set([x['autotest_name'] for x in json_obj])
110 self.assertEqual(len(name_set), len(json_obj),
116 json_obj = []
119 json_obj = json.load(fp)
123 for entry in json_obj:
Dperf_uploader.py58 json_obj = []
61 json_obj = json.load(fp)
63 for entry in json_obj: