Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationSwipeHelper.java332 public boolean swipedFastEnough(float translation, float viewSize) { in swipedFastEnough() method in NotificationSwipeHelper
333 return swipedFastEnough(); in swipedFastEnough()
338 protected boolean swipedFastEnough() { in swipedFastEnough() method in NotificationSwipeHelper
339 return super.swipedFastEnough(); in swipedFastEnough()
356 !swipedFastEnough() /* useAccelerateInterpolator */); in dismiss()
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/statusbar/
DNotificationSwipeActionHelper.java57 public boolean swipedFastEnough(float translation, float velocity); in swipedFastEnough() method
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DSwipeHelper.java647 !swipedFastEnough() /* useAccelerateInterpolator */); in onTouchEvent()
692 && !isFalseGesture(ev) && (swipedFastEnough() || swipedFarEnough()) in isDismissGesture()
706 protected boolean swipedFastEnough() { in swipedFastEnough() method in SwipeHelper
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationSwipeHelperTest.java301 doReturn(false).when(mSwipeHelper).swipedFastEnough(); in testDismiss()
305 verify(mSwipeHelper, times(1)).swipedFastEnough(); in testDismiss()