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

  /external/chromium_org/tools/perf/measurements/
smooth_gesture_util.py 9 def GetAdjustedInteractionIfContainGesture(timeline, interaction_record):
10 """ Returns a new interaction record if interaction_record contains geture
11 whose time range that overlaps with interaction_record's range. If not,
12 returns a clone of original interaction_record.
21 if not interaction_record.label.startswith('Gesture_'):
22 return copy.copy(interaction_record)
27 ev.start <= interaction_record.end and
28 ev.end >= interaction_record.start]
30 return copy.copy(interaction_record)
33 'interaction_record %s.' % interaction_record.label
    [all...]
  /external/chromium_org/tools/perf/metrics/
timeline.py 20 interaction_record = interaction_records[0]
35 for e in thread.IterAllSlicesInRange(interaction_record.start,
36 interaction_record.end):
timeline_unittest.py 92 def GetResults(self, metric, model, renderer_thread, interaction_record):
94 metric.AddResults(model, renderer_thread, interaction_record,

Completed in 832 milliseconds