Home
last modified time | relevance | path

Searched refs:getRecentMotionEvents (Results 1 – 12 of 12) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DBrightLineFalsingManager.java142 mDataProvider.getRecentMotionEvents().stream().map(
163 mDataProvider.getRecentMotionEvents(), 0).isFalse()
248 mDataProvider.getRecentMotionEvents(), 0); in isSimpleTap()
287 mSingleTapClassifier.isTap(mDataProvider.getRecentMotionEvents().isEmpty() in isFalseTap()
289 : mDataProvider.getRecentMotionEvents(), falsePenalty); in isFalseTap()
351 mLongTapClassifier.isTap(mDataProvider.getRecentMotionEvents().isEmpty() in isFalseLongTap()
353 : mDataProvider.getRecentMotionEvents(), falsePenalty); in isFalseLongTap()
H A DFalsingClassifier.java46 List<MotionEvent> getRecentMotionEvents() { in getRecentMotionEvents() method in FalsingClassifier
47 return mDataProvider.getRecentMotionEvents(); in getRecentMotionEvents()
H A DZigZagClassifier.java99 List<MotionEvent> motionEvents = getRecentMotionEvents(); in calculateFalsingResult()
195 return rotateMotionEvents(getRecentMotionEvents(), -angle); in rotateVertical()
202 return rotateMotionEvents(getRecentMotionEvents(), angle); in rotateHorizontal()
H A DTapClassifier.java38 return isTap(getRecentMotionEvents(), 0.5); in calculateFalsingResult()
H A DFalsingDataProvider.java174 public List<MotionEvent> getRecentMotionEvents() { in getRecentMotionEvents() method in FalsingDataProvider
279 List<MotionEvent> recentMotionEvents = getRecentMotionEvents(); in recalculateData()
H A DDoubleTapClassifier.java52 List<MotionEvent> secondTapEvents = getRecentMotionEvents(); in calculateFalsingResult()
H A DDistanceClassifier.java123 List<MotionEvent> motionEvents = getRecentMotionEvents(); in calculateDistances()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/classifier/
H A DFalsingDataProviderTest.java83 List<MotionEvent> motionEventList = mDataProvider.getRecentMotionEvents(); in test_trackMotionEvents_dropUpEvent()
105 List<MotionEvent> motionEventList = mDataProvider.getRecentMotionEvents(); in test_trackMotionEvents_keepUpEvent()
126 List<MotionEvent> motionEventList = mDataProvider.getRecentMotionEvents(); in test_trackRecentMotionEvents()
164 List<MotionEvent> motionEventList = mDataProvider.getRecentMotionEvents(); in test_unpackMotionEvents()
H A DBrightLineClassifierTest.java107 when(mFalsingDataProvider.getRecentMotionEvents()).thenReturn(mMotionEventList); in setup()
225 when(mFalsingDataProvider.getRecentMotionEvents()).thenReturn(new ArrayList<>()); in testIsFalseSingleTap_EmptyRecentEvents()
253 when(mFalsingDataProvider.getRecentMotionEvents()).thenReturn(new ArrayList<>()); in testIsFalseLongTap_EmptyRecentEvents()
H A DSingleTapClassifierTest.java157 when(mDataProvider.getRecentMotionEvents()).thenReturn(mMotionEvents); in addMotionEvent()
H A DDoubleTapClassifierTest.java177 when(mDataProvider.getRecentMotionEvents()).thenReturn(mMotionEvents); in addMotionEvent()
H A DBrightLineFalsingManagerTest.java90 when(mFalsingDataProvider.getRecentMotionEvents()).thenReturn(mMotionEventList); in setup()