Home
last modified time | relevance | path

Searched refs:threads_to_records_map (Results 1 – 2 of 2) sorted by relevance

/external/chromium-trace/catapult/telemetry/telemetry/web_perf/
Dtimeline_based_measurement.py100 threads_to_records_map = defaultdict(list)
112 threads_to_records_map[curr_thread].append(interaction)
117 if curr_thread in threads_to_records_map:
119 r.label for r in threads_to_records_map[curr_thread])
121 return threads_to_records_map
319 threads_to_records_map = _GetRendererThreadsToInteractionRecordsMap(model)
320 if (len(threads_to_records_map.values()) == 0 and
331 threads_to_records_map.iteritems()):
Dtimeline_based_measurement_unittest.py83 def threads_to_records_map(self): member in TimelineBasedMetricTestData
145 self.assertEquals(2, len(d.threads_to_records_map))
148 self.assertIn(d.renderer_thread, d.threads_to_records_map)
149 interactions = d.threads_to_records_map[d.renderer_thread]
158 self.assertIn(d.foo_thread, d.threads_to_records_map)
159 interactions = d.threads_to_records_map[d.foo_thread]