Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationSwipeHelper.java213 final boolean gestureFastEnough = getEscapeVelocity() <= Math.abs(velocity); in handleSwipeFromClosedState()
389 protected float getEscapeVelocity() { in getEscapeVelocity() method in NotificationSwipeHelper
390 return super.getEscapeVelocity(); in getEscapeVelocity()
395 return getEscapeVelocity(); in getMinDismissVelocity()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DSwipeHelper.java391 boolean animateLeft = (Math.abs(velocity) > getEscapeVelocity() && velocity < 0) || in dismissChild()
685 protected float getEscapeVelocity() { in getEscapeVelocity() method in SwipeHelper
726 boolean ret = (Math.abs(velocity) > getEscapeVelocity()) in swipedFastEnough()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationSwipeHelperTest.java331 doReturn(30f).when(mSwipeHelper).getEscapeVelocity(); in testGetMinDismissVelocity()