Home
last modified time | relevance | path

Searched refs:getAllNotifs (Results 1 – 11 of 11) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/notifcollection/
H A DCommonNotifCollection.java53 @NonNull Collection<NotificationEntry> getAllNotifs(); in getAllNotifs() method
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
H A DNotifCollectionTest.java621 new ArraySet<>(mCollection.getAllNotifs())); in testDismissedNotificationsStillAppearInNotificationSet()
650 new ArraySet<>(mCollection.getAllNotifs())); in testRetractingLifetimeExtendedSummaryDoesNotDismissChildren()
658 new ArraySet<>(mCollection.getAllNotifs())); in testRetractingLifetimeExtendedSummaryDoesNotDismissChildren()
673 new ArraySet<>(mCollection.getAllNotifs())); in testNMSReportsUserDismissalAlwaysRemovesNotif()
682 new ArraySet<>(mCollection.getAllNotifs())); in testNMSReportsUserDismissalAlwaysRemovesNotif()
1055 assertTrue(mCollection.getAllNotifs().contains(entry2)); in testLifetimeExtendersAreQueriedWhenNotifRemoved()
1076 assertTrue(mCollection.getAllNotifs().contains(entry2)); in testWhenLastLifetimeExtenderExpiresAllAreReQueried()
1091 assertTrue(mCollection.getAllNotifs().contains(entry2)); in testWhenLastLifetimeExtenderExpiresAllAreReQueried()
1113 assertTrue(mCollection.getAllNotifs().contains(entry2)); in testExtendersAreNotReQueriedUntilFinalActiveExtenderExpires()
1121 assertTrue(mCollection.getAllNotifs().contains(entry2)); in testExtendersAreNotReQueriedUntilFinalActiveExtenderExpires()
[all …]
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/people/widget/
H A DPeopleSpaceWidgetManagerTest.java654 when(mNotifCollection.getAllNotifs()).thenReturn(List.of(entry)); in testUpdateNotificationPostedIfExistingTile()
713 when(mNotifCollection.getAllNotifs()).thenReturn(List.of(entry)); in testUpdateMissedCallNotificationWithoutContentPostedIfExistingTile()
737 when(mNotifCollection.getAllNotifs()).thenReturn(List.of(entry)); in testUpdateMissedCallNotificationWithContentPostedIfExistingTile()
761 when(mNotifCollection.getAllNotifs()).thenReturn(List.of(entry)); in testUpdateMissedCallNotificationWithContentPostedIfMatchingUriTile()
792 when(mNotifCollection.getAllNotifs()).thenReturn(List.of(entry)); in testRemoveMissedCallNotificationWithContentPostedIfMatchingUriTile()
797 when(mNotifCollection.getAllNotifs()).thenReturn(List.of()); in testRemoveMissedCallNotificationWithContentPostedIfMatchingUriTile()
835 when(mNotifCollection.getAllNotifs()).thenReturn(List.of(entry)); in testUpdateMissedCallNotificationWithContentPostedIfMatchingUriTileFromSender()
879 when(mNotifCollection.getAllNotifs()).thenReturn(List.of(entry)); in testDoNotUpdateMissedCallNotificationWithContentPostedIfNoPersonsAttached()
912 when(mNotifCollection.getAllNotifs()).thenReturn(List.of(entry)); in testDoNotUpdateMissedCallNotificationWithContentPostedIfNotMatchingUriTile()
1244 verify(mNotifCollection, times(1)).getAllNotifs(); in testAugmentTileFromNotificationEntryManager()
[all …]
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/dialog/
H A DMediaOutputControllerTest.java231 when(mNotifCollection.getAllNotifs()).thenReturn(entryList); in setUp()
904 when(mNotifCollection.getAllNotifs()).thenReturn(entryList); in getNotificationLargeIcon_withoutLargeIcon_returnsNull()
923 when(mNotifCollection.getAllNotifs()).thenReturn(entryList); in getNotificationLargeIcon_withPackageNameAndMediaSession_returnsIconCompat()
942 when(mNotifCollection.getAllNotifs()).thenReturn(entryList); in getNotificationLargeIcon_withPackageNameAndNoMediaSession_returnsNull()
960 when(mNotifCollection.getAllNotifs()).thenReturn(entryList); in getNotificationSmallIcon_withoutSmallIcon_returnsNull()
979 when(mNotifCollection.getAllNotifs()).thenReturn(entryList); in getNotificationSmallIcon_withPackageNameAndMediaSession_returnsIconCompat()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
H A DNotifPipeline.kt89 override fun getAllNotifs(): Collection<NotificationEntry> {
H A DNotifCollection.java233 Collection<NotificationEntry> getAllNotifs() { in getAllNotifs() method in NotifCollection
365 final List<NotificationEntry> entries = new ArrayList<>(getAllNotifs()); in dismissAllNotifications()
919 final List<NotificationEntry> entries = new ArrayList<>(getAllNotifs());
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/dialog/
H A DMediaOutputController.java284 for (NotificationEntry entry : mNotifCollection.getAllNotifs()) { in getMediaController()
500 for (NotificationEntry entry : mNotifCollection.getAllNotifs()) { in getNotificationSmallIcon()
518 for (NotificationEntry entry : mNotifCollection.getAllNotifs()) { in getNotificationIcon()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationMediaManager.java269 mNotifPipeline.getAllNotifs() in setupNotifPipeline()
360 Collection<NotificationEntry> allNotifications = mNotifPipeline.getAllNotifs(); in findAndUpdateMediaNotifications()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/
H A DBubblesManager.java271 mCommonNotifCollection.getAllNotifs(); in BubblesManager()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/people/widget/
H A DPeopleSpaceWidgetManager.java445 Collection<NotificationEntry> notifications = mNotifCollection.getAllNotifs(); in updateWidgetsWithNotificationChanged()
517 groupConversationNotifications(mNotifCollection.getAllNotifs()); in augmentTileFromNotificationEntryManager()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
H A DBubblesTest.java1179 when(mCommonNotifCollection.getAllNotifs()).thenReturn(Arrays.asList(mRow, mRow2)); in testOnUserChanged_bubblesRestored()