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.java152 doNothing().when(mSwipeHelper).initializeRow(any()); in testOnDownUpdate_ExpandableNotificationRow()
159 verify(mSwipeHelper, times(1)).initializeRow(mNotificationRow); in testOnDownUpdate_ExpandableNotificationRow()
168 doNothing().when(mSwipeHelper).initializeRow(any()); in testOnDownUpdate_notExpandableNotificationRow()
175 verify(mSwipeHelper, times(0)).initializeRow(any()); in testOnDownUpdate_notExpandableNotificationRow()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationSwipeHelper.java142 initializeRow((SwipeableView) currView); in onDownUpdate()
147 protected void initializeRow(SwipeableView row) { in initializeRow() method in NotificationSwipeHelper