Home
last modified time | relevance | path

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

/frameworks/base/tools/velocityplot/
Dvelocityplot.py236 def _scroll(self, timeseries, bottom): argument
237 bottom_index = bisect.bisect_left(timeseries[0], bottom)
238 del timeseries[0][:bottom_index]
239 del timeseries[1][:bottom_index]
240 for i, timeindex in enumerate(timeseries[0]):
241 timeseries[0][i] = timeindex - bottom
263 def _append(self, timeseries, timeindex, number): argument
264 timeseries[0].append(timeindex)
265 timeseries[1].append(number)
/frameworks/base/tools/orientationplot/
Dorientationplot.py384 def _scroll(self, timeseries, bottom): argument
385 bottom_index = bisect.bisect_left(timeseries[0], bottom)
386 del timeseries[0][:bottom_index]
387 del timeseries[1][:bottom_index]
388 for i, timeindex in enumerate(timeseries[0]):
389 timeseries[0][i] = timeindex - bottom
431 def _append(self, timeseries, timeindex, number): argument
432 timeseries[0].append(timeindex)
433 timeseries[1].append(number)