Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/notifcollection/
DCommonNotifCollection.java53 @NonNull Collection<NotificationEntry> getAllNotifs(); in getAllNotifs() method
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
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 …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/people/widget/
DPeopleSpaceWidgetManagerTest.java667 when(mNotifCollection.getAllNotifs()).thenReturn(List.of(entry)); in testUpdateNotificationPostedIfExistingTile()
726 when(mNotifCollection.getAllNotifs()).thenReturn(List.of(entry)); in testUpdateMissedCallNotificationWithoutContentPostedIfExistingTile()
750 when(mNotifCollection.getAllNotifs()).thenReturn(List.of(entry)); in testUpdateMissedCallNotificationWithContentPostedIfExistingTile()
774 when(mNotifCollection.getAllNotifs()).thenReturn(List.of(entry)); in testUpdateMissedCallNotificationWithContentPostedIfMatchingUriTile()
805 when(mNotifCollection.getAllNotifs()).thenReturn(List.of(entry)); in testRemoveMissedCallNotificationWithContentPostedIfMatchingUriTile()
810 when(mNotifCollection.getAllNotifs()).thenReturn(List.of()); in testRemoveMissedCallNotificationWithContentPostedIfMatchingUriTile()
848 when(mNotifCollection.getAllNotifs()).thenReturn(List.of(entry)); in testUpdateMissedCallNotificationWithContentPostedIfMatchingUriTileFromSender()
892 when(mNotifCollection.getAllNotifs()).thenReturn(List.of(entry)); in testDoNotUpdateMissedCallNotificationWithContentPostedIfNoPersonsAttached()
925 when(mNotifCollection.getAllNotifs()).thenReturn(List.of(entry)); in testDoNotUpdateMissedCallNotificationWithContentPostedIfNotMatchingUriTile()
956 when(mNotifCollection.getAllNotifs()).thenReturn(List.of(entry)); in testDoNotUpdateMissedCallIfMatchingUriTileMissingReadContactsPermission()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/dialog/
DMediaOutputControllerTest.java244 when(mNotifCollection.getAllNotifs()).thenReturn(entryList); in setUp()
1006 when(mNotifCollection.getAllNotifs()).thenReturn(entryList); in getNotificationLargeIcon_withoutLargeIcon_returnsNull()
1025 when(mNotifCollection.getAllNotifs()).thenReturn(entryList); in getNotificationLargeIcon_withPackageNameAndMediaSession_returnsIconCompat()
1044 when(mNotifCollection.getAllNotifs()).thenReturn(entryList); in getNotificationLargeIcon_withPackageNameAndNoMediaSession_returnsNull()
1062 when(mNotifCollection.getAllNotifs()).thenReturn(entryList); in getNotificationSmallIcon_withoutSmallIcon_returnsNull()
1081 when(mNotifCollection.getAllNotifs()).thenReturn(entryList); in getNotificationSmallIcon_withPackageNameAndMediaSession_returnsIconCompat()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotifPipeline.kt89 override fun getAllNotifs(): Collection<NotificationEntry> { in getAllNotifs() method in com.android.systemui.statusbar.notification.collection.NotifPipeline
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());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationMediaManager.java208 mNotifPipeline.getAllNotifs() in setupNotifPipeline()
304 Collection<NotificationEntry> allNotifications = mNotifPipeline.getAllNotifs(); in findAndUpdateMediaNotifications()
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/dialog/
DMediaOutputController.java309 for (NotificationEntry entry : mNotifCollection.getAllNotifs()) { in getMediaController()
527 for (NotificationEntry entry : mNotifCollection.getAllNotifs()) { in getNotificationSmallIcon()
545 for (NotificationEntry entry : mNotifCollection.getAllNotifs()) { in getNotificationIcon()
/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/
DBubblesManager.java318 mCommonNotifCollection.getAllNotifs(); in BubblesManager()
/frameworks/base/packages/SystemUI/src/com/android/systemui/people/widget/
DPeopleSpaceWidgetManager.java478 Collection<NotificationEntry> notifications = mNotifCollection.getAllNotifs(); in updateWidgetsWithNotificationChanged()
550 groupConversationNotifications(mNotifCollection.getAllNotifs()); in augmentTileFromNotificationEntryManager()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
DBubblesTest.java1295 when(mCommonNotifCollection.getAllNotifs()).thenReturn(Arrays.asList(mRow, mRow2)); in testOnUserChanged_bubblesRestored()