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.java150 doNothing().when(mSwipeHelper).initializeRow(any()); in testOnDownUpdate_ExpandableNotificationRow()
157 verify(mSwipeHelper, times(1)).initializeRow(mNotificationRow); in testOnDownUpdate_ExpandableNotificationRow()
166 doNothing().when(mSwipeHelper).initializeRow(any()); in testOnDownUpdate_notExpandableNotificationRow()
173 verify(mSwipeHelper, times(0)).initializeRow(any()); in testOnDownUpdate_notExpandableNotificationRow()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationSwipeHelper.java130 initializeRow((ExpandableNotificationRow) currView); in onDownUpdate()
135 protected void initializeRow(ExpandableNotificationRow row) { in initializeRow() method in NotificationSwipeHelper