Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
DFalsingDataProvider.java61 private TimeLimitedInputEventBuffer<MotionEvent> mRecentMotionEvents = field in FalsingDataProvider
124 mRecentMotionEvents.addAll(motionEvents); in onMotionEvent()
126 FalsingClassifier.logVerbose("Size: " + mRecentMotionEvents.size()); in onMotionEvent()
141 if (mRecentMotionEvents.isEmpty()) { in onMotionEventComplete()
144 int action = mRecentMotionEvents.get(mRecentMotionEvents.size() - 1).getActionMasked(); in onMotionEventComplete()
151 if (!mRecentMotionEvents.isEmpty()) { in completePriorGesture()
153 mRecentMotionEvents.get(mRecentMotionEvents.size() - 1).getEventTime())); in completePriorGesture()
155 mPriorMotionEvents = mRecentMotionEvents; in completePriorGesture()
156 mRecentMotionEvents = new TimeLimitedInputEventBuffer<>(MOTION_EVENT_AGE_MS); in completePriorGesture()
187 if (!mDropLastEvent || mRecentMotionEvents.isEmpty()) { in getRecentMotionEvents()
[all …]
DBrightLineFalsingManager.java548 private final List<XYDt> mRecentMotionEvents; field in BrightLineFalsingManager.DebugSwipeRecord
554 mRecentMotionEvents = recentMotionEvents; in DebugSwipeRecord()
562 for (XYDt event : mRecentMotionEvents) { in getString()