Home
last modified time | relevance | path

Searched refs:swipedFastEnough (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationSwipeHelperTest.java337 doReturn(true).when(mSwipeHelper).swipedFastEnough(); in testIsDismissGesture()
349 doReturn(true).when(mSwipeHelper).swipedFastEnough(); in testIsDismissGesture_falseGesture()
361 doReturn(false).when(mSwipeHelper).swipedFastEnough(); in testIsDismissGesture_farEnough()
373 doReturn(false).when(mSwipeHelper).swipedFastEnough(); in testIsDismissGesture_notFarOrFastEnough()
476 doReturn(false).when(mSwipeHelper).swipedFastEnough(); in testDismiss()
480 verify(mSwipeHelper, times(1)).swipedFastEnough(); in testDismiss()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationSwipeHelper.java420 protected boolean swipedFastEnough() { in swipedFastEnough() method in NotificationSwipeHelper
421 return super.swipedFastEnough(); in swipedFastEnough()
433 !swipedFastEnough() /* useAccelerateInterpolator */); in dismiss()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSwipeHelper.java725 !swipedFastEnough() /* useAccelerateInterpolator */); in onTouchEvent()
770 && !isFalseGesture() && (swipedFastEnough() || swipedFarEnough()) in isDismissGesture()
785 protected boolean swipedFastEnough() { in swipedFastEnough() method in SwipeHelper