Home
last modified time | relevance | path

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

/packages/apps/Car/Notification/src/com/android/car/notification/
DCarNotificationViewAdapter.java463 List<NotificationGroup> notificationGroupList = notifications.stream() in setNotifications() local
469 notificationGroupList.add(0, createNotificationHeader()); in setNotifications()
471 notificationGroupList.add(createNotificationFooter()); in setNotifications()
478 new CarNotificationDiff(mContext, mNotifications, notificationGroupList, mMaxItems); in setNotifications()
482 mNotifications = notificationGroupList; in setNotifications()
498 List<NotificationGroup> notificationGroupList; in setSeenAndUnseenNotifications() local
502 notificationGroupList = new ArrayList<>(); in setSeenAndUnseenNotifications()
506 notificationGroupList = new ArrayList<>(unseenNotifications); in setSeenAndUnseenNotifications()
509 notificationGroupList.add(/* index= */ 0, createRecentsHeader()); in setSeenAndUnseenNotifications()
520 notificationGroupList.add(createOlderHeader()); in setSeenAndUnseenNotifications()
[all …]
/packages/apps/Car/Notification/tests/unit/src/com/android/car/notification/template/
DGroupNotificationViewHolderTest.java184 argThat(notificationGroupList -> notificationGroupList.size() == 1), eq(false)); in resetNotifications_removeAllGroupedNotifications()