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.java397 doNothing().when(mSwipeHelper).superSnapChild(mNotificationRow, 0, 0); in testSnapchild_targetIsZero()
401 verify(mSwipeHelper, times(1)).superSnapChild(mNotificationRow, 0, 0); in testSnapchild_targetIsZero()
408 doNothing().when(mSwipeHelper).superSnapChild(mNotificationRow, 10, 0); in testSnapchild_targetNotZero()
412 verify(mSwipeHelper, times(1)).superSnapChild(mNotificationRow, 10, 0); in testSnapchild_targetNotZero()
418 doNothing().when(mSwipeHelper).superSnapChild(mView, 10, 0); in testSnapchild_targetNotSwipeable()
422 verify(mSwipeHelper, never()).superSnapChild(mView, 10, 0); in testSnapchild_targetNotSwipeable()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationSwipeHelper.java352 protected void superSnapChild(final View animView, final float targetLeft, float velocity) { in superSnapChild() method in NotificationSwipeHelper
360 superSnapChild(animView, targetLeft, velocity); in snapChild()