Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationMediaManager.java304 Collection<NotificationEntry> allNotifications = mNotifPipeline.getAllNotifs(); in findAndUpdateMediaNotifications() local
308 for (NotificationEntry entry: allNotifications) { in findAndUpdateMediaNotifications()
313 findPlayingMediaNotification(allNotifications); in findAndUpdateMediaNotifications()
323 void findPlayingMediaNotification(@NonNull Collection<NotificationEntry> allNotifications) { in findPlayingMediaNotification() argument
327 for (NotificationEntry entry : allNotifications) { in findPlayingMediaNotification()
362 void findPlayingMediaNotification(@NonNull List<StatusBarNotification> allNotifications) { in findPlayingMediaNotification() argument
366 for (StatusBarNotification sbn : allNotifications) { in findPlayingMediaNotification()
/frameworks/base/packages/SystemUI/src/com/android/systemui/people/widget/
DPeopleSpaceWidgetManager.java599 Set<NotificationEntry> allNotifications = notifications.get(key); in augmentTileFromNotifications() local
600 if (allNotifications == null) { in augmentTileFromNotifications()
601 allNotifications = new HashSet<>(); in augmentTileFromNotifications()
603 if (allNotifications.isEmpty() && notificationsByUri.isEmpty()) { in augmentTileFromNotifications()
609 allNotifications.addAll(notificationsByUri); in augmentTileFromNotifications()
610 if (DEBUG) Log.d(TAG, "Total notifications matching tile: " + allNotifications.size()); in augmentTileFromNotifications()
612 int messagesCount = getMessagesCount(allNotifications); in augmentTileFromNotifications()
613 NotificationEntry highestPriority = getHighestPriorityNotification(allNotifications); in augmentTileFromNotifications()