Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationSwipeHelper.java238 final boolean gestureFastEnough = getEscapeVelocity() <= Math.abs(velocity); in handleSwipeFromClosedState()
448 protected float getEscapeVelocity() { in getEscapeVelocity() method in NotificationSwipeHelper
449 return super.getEscapeVelocity(); in getEscapeVelocity()
454 return getEscapeVelocity(); in getMinDismissVelocity()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSwipeHelper.java416 boolean animateLeft = (Math.abs(velocity) > getEscapeVelocity() && velocity < 0) || in dismissChild()
747 protected float getEscapeVelocity() { in getEscapeVelocity() method in SwipeHelper
788 boolean ret = (Math.abs(velocity) > getEscapeVelocity()) in swipedFastEnough()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationSwipeHelperTest.java504 doReturn(30f).when(mSwipeHelper).getEscapeVelocity(); in testGetMinDismissVelocity()