OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:timeindex
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/tools/orientationplot/
orientationplot.py
264
timeindex
= 0
282
timeindex
= delta.seconds + delta.microseconds * 0.000001
312
self._append(self.raw_acceleration_x,
timeindex
, self.parse_raw_acceleration_x)
313
self._append(self.raw_acceleration_y,
timeindex
, self.parse_raw_acceleration_y)
314
self._append(self.raw_acceleration_z,
timeindex
, self.parse_raw_acceleration_z)
315
self._append(self.raw_acceleration_magnitude,
timeindex
, self.parse_raw_acceleration_magnitude)
316
self._append(self.filtered_acceleration_x,
timeindex
, self.parse_filtered_acceleration_x)
317
self._append(self.filtered_acceleration_y,
timeindex
, self.parse_filtered_acceleration_y)
318
self._append(self.filtered_acceleration_z,
timeindex
, self.parse_filtered_acceleration_z)
319
self._append(self.filtered_acceleration_magnitude,
timeindex
, self.parse_filtered_acceleration_magnitude
[
all
...]
/frameworks/base/tools/velocityplot/
velocityplot.py
178
timeindex
= 0
196
timeindex
= delta.seconds + delta.microseconds * 0.000001
202
self._append(self.velocity_x,
timeindex
, self.parse_velocity_x)
203
self._append(self.velocity_y,
timeindex
, self.parse_velocity_y)
204
self._append(self.velocity_magnitude,
timeindex
, self.parse_velocity_magnitude)
210
self._append(self.old_velocity_x,
timeindex
, self.parse_old_velocity_x)
211
self._append(self.old_velocity_y,
timeindex
, self.parse_old_velocity_y)
212
self._append(self.old_velocity_magnitude,
timeindex
, self.parse_old_velocity_magnitude)
215
if
timeindex
> timespan:
216
bottom = int(
timeindex
) - timespan + scrolljum
[
all
...]
Completed in 48 milliseconds