Home
last modified time | relevance | path

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

/aosp12/packages/apps/Car/Notification/src/com/android/car/notification/
H A DNotificationDataManager.java141 List<AlertEntry> alertEntries = new ArrayList<>(); in updateUnseenNotificationGroups() local
145 alertEntries.add(group.getGroupSummaryNotification()); in updateUnseenNotificationGroups()
147 alertEntries.addAll(group.getChildNotifications()); in updateUnseenNotificationGroups()
150 updateUnseenAlertEntries(alertEntries); in updateUnseenNotificationGroups()
153 void updateUnseenAlertEntries(List<AlertEntry> alertEntries) { in updateUnseenAlertEntries() argument
159 for (AlertEntry alertEntry : alertEntries) { in updateUnseenAlertEntries()
230 void setNotificationsAsSeen(List<AlertEntry> alertEntries) { in setNotificationsAsSeen() argument
232 for (AlertEntry alertEntry : alertEntries) { in setNotificationsAsSeen()
/aosp12/packages/apps/Car/Notification/tests/unit/src/com/android/car/notification/
H A DPreprocessingManagerTest.java1017 List<AlertEntry> alertEntries) { in generateRankingMap() argument
1019 new NotificationListenerService.Ranking[alertEntries.size()]; in generateRankingMap()
1020 for (int i = 0; i < alertEntries.size(); i++) { in generateRankingMap()
1021 String key = alertEntries.get(i).getKey(); in generateRankingMap()
1022 int rank = alertEntries.size() - i; // ranking in reverse order; in generateRankingMap()