Home
last modified time | relevance | path

Searched refs:superSnapChild (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationSwipeHelperTest.java231 doNothing().when(mSwipeHelper).superSnapChild(mView, 0, 0); in testSnapchild_targetIsZero()
235 verify(mSwipeHelper, times(1)).superSnapChild(mView, 0, 0); in testSnapchild_targetIsZero()
242 doNothing().when(mSwipeHelper).superSnapChild(mView, 10, 0); in testSnapchild_targetNotZero()
246 verify(mSwipeHelper, times(1)).superSnapChild(mView, 10, 0); in testSnapchild_targetNotZero()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationSwipeHelper.java272 protected void superSnapChild(final View animView, final float targetLeft, float velocity) { in superSnapChild() method in NotificationSwipeHelper
278 superSnapChild(animView, targetLeft, velocity); in snapChild()