Home
last modified time | relevance | path

Searched refs:menuRow (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationSwipeHelper.java110 void setCurrentMenuRow(NotificationMenuRowPlugin menuRow) { in setCurrentMenuRow() argument
111 mCurrMenuRowRef = menuRow != null ? new WeakReference<>(menuRow) : null; in setCurrentMenuRow()
137 final NotificationMenuRowPlugin menuRow = getCurrentMenuRow(); in onChildSnappedBack() local
138 if (menuRow != null && targetLeft == 0) { in onChildSnappedBack()
139 menuRow.resetMenu(); in onChildSnappedBack()
149 NotificationMenuRowPlugin menuRow = getCurrentMenuRow(); in onDownUpdate() local
150 if (menuRow != null) { in onDownUpdate()
151 menuRow.onTouchStart(); in onDownUpdate()
167 final NotificationMenuRowPlugin menuRow = row.createMenu(); in initializeRow() local
168 setCurrentMenuRow(menuRow); in initializeRow()
[all …]
DNotificationStackScrollLayoutController.java657 NotificationMenuRowPlugin menuRow = mSwipeHelper.getCurrentMenuRow();
658 if (menuRow != null) {
659 return Math.abs(menuRow.getMenuSnapTarget());
1644 NotificationMenuRowPlugin menuRow = mSwipeHelper.getCurrentMenuRow();
1650 } else if (menuRow != null && menuRow.isMenuVisible()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationGutsManagerTest.java576 NotificationMenuRowPlugin menuRow = in createTestMenuItem() local
578 menuRow.createMenu(row, row.getEntry().getSbn()); in createTestMenuItem()
580 NotificationMenuRowPlugin.MenuItem menuItem = menuRow.getLongpressMenuItem(mContext); in createTestMenuItem()
DNotificationGutsManagerWithScenesTest.kt613 val menuRow: NotificationMenuRowPlugin = in <lambda>() constant
615 menuRow.createMenu(row, row!!.entry.sbn) in <lambda>()
616 val menuItem = menuRow.getLongpressMenuItem(mContext) in <lambda>()