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.py93 threads_to_records_map = defaultdict(list)
105 threads_to_records_map[curr_thread].append(interaction)
110 if curr_thread in threads_to_records_map:
112 r.label for r in threads_to_records_map[curr_thread])
114 return threads_to_records_map
339 threads_to_records_map = _GetRendererThreadsToInteractionRecordsMap(model)
340 if (len(threads_to_records_map.values()) == 0 and
351 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]