Home
last modified time | relevance | path

Searched refs:mNotificationList (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarTest.java145 @Mock private ArrayList<NotificationEntry> mNotificationList; field in StatusBarTest
502 when(mNotificationData.getActiveNotifications()).thenReturn(mNotificationList); in testPanelOpenForHeadsUp()
503 when(mNotificationList.size()).thenReturn(5); in testPanelOpenForHeadsUp()
521 when(mNotificationData.getActiveNotifications()).thenReturn(mNotificationList); in testPanelOpenAndClear()
522 when(mNotificationList.size()).thenReturn(5); in testPanelOpenAndClear()
540 when(mNotificationData.getActiveNotifications()).thenReturn(mNotificationList); in testPanelOpenAndNoClear()
541 when(mNotificationList.size()).thenReturn(5); in testPanelOpenAndNoClear()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationManagerService.java416 final ArrayList<NotificationRecord> mNotificationList = new ArrayList<>(); field in NotificationManagerService
1528 int count = mNotificationList.size() + mNotificationsByKey.size() in getNotificationRecordCount()
1531 for (NotificationRecord posted : mNotificationList) { in getNotificationRecordCount()
1547 mNotificationList.clear(); in clearNotifications()
1554 mNotificationList.add(r); in addNotification()
3031 tmp = new StatusBarNotification[mNotificationList.size()];
3032 final int N = mNotificationList.size();
3034 tmp[i] = mNotificationList.get(i).sbn;
3062 = new ArrayMap<>(mNotificationList.size() + mEnqueuedNotifications.size());
3063 final int N = mNotificationList.size();
[all …]
/frameworks/base/packages/CarSystemUI/src/com/android/systemui/statusbar/car/
DCarStatusBar.java184 private RecyclerView mNotificationList; field in CarStatusBar
793 mNotificationList = mNotificationView.findViewById(R.id.notifications); in connectNotificationsUI()
794 mNotificationList.addOnScrollListener(new RecyclerView.OnScrollListener() { in connectNotificationsUI()
798 if (!mNotificationList.canScrollVertically(1)) { in connectNotificationsUI()
807 mNotificationList.setOnTouchListener(new View.OnTouchListener() { in connectNotificationsUI()
909 mNotificationList.scrollToPosition(0); in animateExpandNotificationsPanel()
1533 mNotificationList.scrollToPosition(0); in onScroll()