Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationSwipeHelperTest.java176 doNothing().when(mSwipeHelper).initializeRow(any()); in testOnDownUpdate_ExpandableNotificationRow()
183 verify(mSwipeHelper, times(1)).initializeRow(mNotificationRow); in testOnDownUpdate_ExpandableNotificationRow()
192 doNothing().when(mSwipeHelper).initializeRow(any()); in testOnDownUpdate_notExpandableNotificationRow()
199 verify(mSwipeHelper, times(0)).initializeRow(any()); in testOnDownUpdate_notExpandableNotificationRow()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationSwipeHelper.java160 initializeRow((SwipeableView) currView); in onDownUpdate()
165 protected void initializeRow(SwipeableView row) { in initializeRow() method in NotificationSwipeHelper