Searched refs:IndexedEventPair (Results 1 – 4 of 4) sorted by relevance
12 import android.hardware.cts.helpers.sensorverification.AbstractSensorVerification.IndexedEventPair;37 private final List<IndexedEventPair> mFailures = new LinkedList<IndexedEventPair>();98 IndexedEventPair info = mFailures.get(i); in verify()137 mFailures.add(new IndexedEventPair(1, mFirstEvent, null)); in addSensorEventInternal()
39 private final List<IndexedEventPair> mOutOfOrderEvents = new LinkedList<IndexedEventPair>();84 IndexedEventPair info = mOutOfOrderEvents.get(i); in verify()117 mOutOfOrderEvents.add(new IndexedEventPair(mIndex, event, mPreviousEvent)); in addSensorEventInternal()
38 private final List<IndexedEventPair> mEventGaps = new LinkedList<IndexedEventPair>();89 IndexedEventPair info = mEventGaps.get(i); in verify()120 mEventGaps.add(new IndexedEventPair(mEventCount, event, mPreviousEvent)); in addSensorEventInternal()
77 protected class IndexedEventPair extends IndexedEvent { class in AbstractSensorVerification80 public IndexedEventPair(int index, TestSensorEvent event, TestSensorEvent previousEvent) { in IndexedEventPair() method in AbstractSensorVerification.IndexedEventPair