HomeSort by relevance Sort by last modified time
    Searched refs:tir_module (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/tools/telemetry/telemetry/web_perf/
timeline_interaction_record_unittest.py 10 from telemetry.web_perf import timeline_interaction_record as tir_module namespace
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)
63 smooth_marker = tir_module.GetJavaScriptMarker(
64 'MyLabel', [tir_module.IS_SMOOTH])
66 slr_marker = tir_module.GetJavaScriptMarker(
67 'MyLabel', [tir_module.IS_SMOOTH, tir_module.IS_RESPONSIVE]
    [all...]
timeline_based_measurement.py 15 from telemetry.web_perf import timeline_interaction_record as tir_module namespace
42 if metric_type == tir_module.IS_FAST:
44 if metric_type == tir_module.IS_SMOOTH:
46 if metric_type == tir_module.IS_RESPONSIVE:
79 return [tir_module.TimelineInteractionRecord.FromAsyncEvent(event) for
81 if tir_module.IsTimelineInteractionRecord(event.name)]
102 for metric_type in tir_module.METRICS:
timeline_based_measurement_unittest.py 20 from telemetry.web_perf import timeline_interaction_record as tir_module namespace
55 if metric_type == tir_module.IS_FAST:
57 if metric_type == tir_module.IS_SMOOTH:
59 if metric_type == tir_module.IS_RESPONSIVE:
  /external/chromium_org/tools/perf/measurements/
smooth_gesture_util.py 6 from telemetry.web_perf import timeline_interaction_record as tir_module namespace
34 return tir_module.TimelineInteractionRecord(
smooth_gesture_util_unittest.py 15 from telemetry.web_perf import timeline_interaction_record as tir_module namespace
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)
143 if tir_module.IsTimelineInteractionRecord(e.name):
144 smooth_record = tir_module.TimelineInteractionRecord.FromAsyncEvent(e)
loading_trace.py 8 from telemetry.web_perf import timeline_interaction_record as tir_module namespace
32 record = tir_module.TimelineInteractionRecord(
timeline_controller.py 10 from telemetry.web_perf import timeline_interaction_record as tir_module namespace
61 if not tir_module.IsTimelineInteractionRecord(event.name):
63 r = tir_module.TimelineInteractionRecord.FromAsyncEvent(event)
smoothness_controller.py 14 from telemetry.web_perf import timeline_interaction_record as tir_module namespace
78 if not tir_module.IsTimelineInteractionRecord(event.name):
80 r = tir_module.TimelineInteractionRecord.FromAsyncEvent(event)
  /external/chromium_org/tools/telemetry/telemetry/web_perf/metrics/
responsiveness_metric.py 7 from telemetry.web_perf import timeline_interaction_record as tir_module namespace
37 except tir_module.NoThreadTimeDataException as e:
mainthread_jank_stats_unittest.py 9 from telemetry.web_perf import timeline_interaction_record as tir_module namespace
22 return tir_module.TimelineInteractionRecord.FromAsyncEvent(s)
fast_metric.py 9 from telemetry.web_perf import timeline_interaction_record as tir_module namespace
63 except tir_module.NoThreadTimeDataException:
fast_metric_unittest.py 12 from telemetry.web_perf import timeline_interaction_record as tir_module namespace
47 tir_module.TimelineInteractionRecord.FromAsyncEvent(s)
  /external/chromium_org/tools/telemetry/examples/
measure_trace.py 20 from telemetry.web_perf import timeline_interaction_record as tir_module namespace
31 if not tir_module.IsTimelineInteractionRecord(event.name):
37 tir_module.TimelineInteractionRecord.FromAsyncEvent(event))
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
action_runner_unittest.py 14 from telemetry.web_perf import timeline_interaction_record as tir_module namespace
23 tir_module.TimelineInteractionRecord.FromAsyncEvent(e)
25 if tir_module.IsTimelineInteractionRecord(e.name)
  /external/chromium_org/tools/perf/metrics/
timeline_unittest.py 10 from telemetry.web_perf import timeline_interaction_record as tir_module namespace
13 return tir_module.TimelineInteractionRecord("test-record", start, end)

Completed in 202 milliseconds