Home
last modified time | relevance | path

Searched refs:tir_module (Results 1 – 9 of 9) sorted by relevance

/external/chromium-trace/catapult/telemetry/telemetry/web_perf/
Dtimeline_interaction_record_unittest.py10 from telemetry.web_perf import timeline_interaction_record as tir_module unknown
16 self.assertTrue(tir_module.IsTimelineInteractionRecord(
18 self.assertTrue(tir_module.IsTimelineInteractionRecord(
20 self.assertFalse(tir_module.IsTimelineInteractionRecord(
30 return tir_module.TimelineInteractionRecord.FromAsyncEvent(s)
54 repeatable_marker = tir_module.GetJavaScriptMarker(
55 'MyLabel', [tir_module.REPEATABLE])
69 record = tir_module.TimelineInteractionRecord.FromAsyncEvent(s)
101 record = tir_module.TimelineInteractionRecord.FromAsyncEvent(s)
123 record = tir_module.TimelineInteractionRecord.FromAsyncEvent(s)
Dsmooth_gesture_util_unittest.py15 from telemetry.web_perf import timeline_interaction_record as tir_module unknown
54 record_1 = tir_module.TimelineInteractionRecord('Gesture_included', 15, 25)
55 record_2 = tir_module.TimelineInteractionRecord(
57 record_3 = tir_module.TimelineInteractionRecord(
59 record_4 = tir_module.TimelineInteractionRecord(
61 record_5 = tir_module.TimelineInteractionRecord(
63 record_6 = tir_module.TimelineInteractionRecord('Action_included', 15, 25)
147 if tir_module.IsTimelineInteractionRecord(e.name):
148 smooth_record = tir_module.TimelineInteractionRecord.FromAsyncEvent(e)
Dsmooth_gesture_util.py6 from telemetry.web_perf import timeline_interaction_record as tir_module unknown
34 return tir_module.TimelineInteractionRecord(
Dtimeline_based_measurement.py28 from telemetry.web_perf import timeline_interaction_record as tir_module unknown
105 if tir_module.IsTimelineInteractionRecord(event.name):
106 interaction = tir_module.TimelineInteractionRecord.FromAsyncEvent(event)
/external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
Dresponsiveness_metric.py10 from telemetry.web_perf import timeline_interaction_record as tir_module unknown
38 except tir_module.NoThreadTimeDataException as e:
Dmainthread_jank_stats_unittest.py10 from telemetry.web_perf import timeline_interaction_record as tir_module unknown
22 return tir_module.TimelineInteractionRecord.FromAsyncEvent(s)
Dv8_execution_unittest.py10 from telemetry.web_perf import timeline_interaction_record as tir_module unknown
16 INTERACTION_RECORDS = [tir_module.TimelineInteractionRecord("test-record",
Dgpu_timeline_unittest.py12 from telemetry.web_perf import timeline_interaction_record as tir_module unknown
20 INTERACTION_RECORDS = [tir_module.TimelineInteractionRecord("test-record",
/external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
Daction_runner_unittest.py14 from telemetry.web_perf import timeline_interaction_record as tir_module unknown
23 tir_module.TimelineInteractionRecord.FromAsyncEvent(e)
25 if tir_module.IsTimelineInteractionRecord(e.name)