Home
last modified time | relevance | path

Searched refs:mNotifCollection (Results 1 – 17 of 17) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotifPipeline.kt78 private val mNotifCollection: NotifCollection, constant in com.android.systemui.statusbar.notification.collection.NotifPipeline
90 return mNotifCollection.allNotifs in getAllNotifs()
94 mNotifCollection.addCollectionListener(listener) in addCollectionListener()
98 mNotifCollection.removeCollectionListener(listener) in removeCollectionListener()
105 return mNotifCollection.getEntry(key) in getEntry()
113 mNotifCollection.addNotificationLifetimeExtender(extender) in addNotificationLifetimeExtender()
121 mNotifCollection.addNotificationDismissInterceptor(interceptor) in addNotificationDismissInterceptor()
250 return mNotifCollection.getInternalNotifUpdater(name) in getInternalNotifUpdater()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/init/
DNotifPipelineInitializer.java53 private final NotifCollection mNotifCollection; field in NotifPipelineInitializer
79 mNotifCollection = notifCollection; in NotifPipelineInitializer()
108 mListBuilder.attach(mNotifCollection); in initialize()
109 mNotifCollection.attach(mGroupCoalescer); in initialize()
136 d.dump("notifCollection", mNotifCollection); in dumpPipeline()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/inflation/
DOnUserInteractionCallbackImpl.java48 private final NotifCollection mNotifCollection; field in OnUserInteractionCallbackImpl
62 mNotifCollection = notifCollection; in OnUserInteractionCallbackImpl()
95 return mNotifCollection.registerFutureDismissal( in registerFutureDismissal()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DBubbleCoordinator.java62 private final NotifCollection mNotifCollection; field in BubbleCoordinator
74 mNotifCollection = notifCollection; in BubbleCoordinator()
139 mNotifCollection.dismissNotification(entry, dismissedByUserStats);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/people/widget/
DLaunchConversationActivityTest.java86 private CommonNotifCollection mNotifCollection; field in LaunchConversationActivityTest
119 mNotifCollection, in setUp()
133 when(mNotifCollection.getEntry(NOTIF_KEY)).thenReturn(mNotifEntry); in setUp()
134 when(mNotifCollection.getEntry(NOTIF_KEY_NO_ENTRY)).thenReturn(null); in setUp()
135 when(mNotifCollection.getEntry(NOTIF_KEY_NO_RANKING)).thenReturn(mNotifEntryNoRanking); in setUp()
136 when(mNotifCollection.getEntry(NOTIF_KEY_CAN_BUBBLE)).thenReturn(mNotifEntryCanBubble); in setUp()
DPeopleSpaceWidgetManagerTest.java247 private CommonNotifCollection mNotifCollection; field in PeopleSpaceWidgetManagerTest
280 mPeopleManager, mLauncherApps, mNotifCollection, mPackageManager, in setUp()
667 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()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/dialog/
DMediaOutputControllerTest.java150 private CommonNotifCollection mNotifCollection; field in MediaOutputControllerTest
206 mNotifCollection, in setUp()
244 when(mNotifCollection.getAllNotifs()).thenReturn(entryList); in setUp()
300 mNotifCollection, in start_withoutPackageName_verifyMediaControllerInit()
342 mNotifCollection, in stop_withoutPackageName_verifyMediaControllerDeinit()
598 mNotifCollection, in getAppSourceName_packageNameIsNull_returnsNull()
632 mNotifCollection, in getNotificationSmallIcon_packageNameIsNull_returnsNull()
679 mNotifCollection, in addDeviceToPlayMedia_callsLocalMediaManager()
706 mNotifCollection, in removeDeviceFromPlayMedia_callsLocalMediaManager()
986 mNotifCollection, in getNotificationLargeIcon_withoutPackageName_returnsNull()
[all …]
DMediaOutputBaseDialogTest.java88 private final CommonNotifCollection mNotifCollection = mock(CommonNotifCollection.class); field in MediaOutputBaseDialogTest
135 mNotifCollection, in setUp()
DMediaOutputBroadcastDialogTest.java104 private final CommonNotifCollection mNotifCollection = mock(CommonNotifCollection.class); field in MediaOutputBroadcastDialogTest
136 mNotifCollection, in setUp()
DMediaOutputDialogTest.java100 private final CommonNotifCollection mNotifCollection = mock(CommonNotifCollection.class); field in MediaOutputDialogTest
149 mNotifCollection, in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationMediaManager.java83 private final NotifCollection mNotifCollection; field in NotificationMediaManager
151 mNotifCollection = notifCollection; in NotificationMediaManager()
213 mNotifCollection.dismissNotification(entry, in setupNotifPipeline()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/
DNotificationLockscreenUserManagerTest.java138 private CommonNotifCollection mNotifCollection; field in NotificationLockscreenUserManagerTest
211 when(mNotifCollection.getEntry(mCurrentUserNotif.getKey())).thenReturn(mCurrentUserNotif); in setUp()
219 when(mNotifCollection.getEntry( in setUp()
236 when(mNotifCollection.getEntry(mWorkProfileNotif.getKey())).thenReturn(mWorkProfileNotif); in setUp()
682 when(mNotifCollection.getEntry(notifEntry.getKey())).thenReturn(notifEntry); in testDevicePolicy_noPrivateNotifications_userAll()
963 (() -> mNotifCollection), in TestNotificationLockscreenUserManager()
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/dialog/
DMediaOutputController.java135 private final CommonNotifCollection mNotifCollection; field in MediaOutputController
203 mNotifCollection = notifCollection; in MediaOutputController()
309 for (NotificationEntry entry : mNotifCollection.getAllNotifs()) { in getMediaController()
527 for (NotificationEntry entry : mNotifCollection.getAllNotifs()) { in getNotificationSmallIcon()
545 for (NotificationEntry entry : mNotifCollection.getAllNotifs()) { in getNotificationIcon()
975 mNotifCollection, in launchMediaOutputBroadcastDialog()
/frameworks/base/packages/SystemUI/src/com/android/systemui/people/widget/
DPeopleSpaceWidgetManager.java147 private CommonNotifCollection mNotifCollection; field in PeopleSpaceWidgetManager
201 mNotifCollection = notifCollection; in PeopleSpaceWidgetManager()
280 mNotifCollection = notifCollection; in PeopleSpaceWidgetManager()
478 Collection<NotificationEntry> notifications = mNotifCollection.getAllNotifs(); in updateWidgetsWithNotificationChanged()
550 groupConversationNotifications(mNotifCollection.getAllNotifs()); in augmentTileFromNotificationEntryManager()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutController.java186 private final NotifCollection mNotifCollection; field in NotificationStackScrollLayoutController
786 mNotifCollection = notifCollection; in NotificationStackScrollLayoutController()
1674 mNotifCollection.dismissAllNotifications(
1684 mNotifCollection.dismissNotifications(entriesWithRowsDismissedFromShade);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutControllerTest.java160 @Mock private NotifCollection mNotifCollection; field in NotificationStackScrollLayoutControllerTest
1006 mNotifCollection, in initController()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
DShadeListBuilderTest.java111 @Mock private NotifCollection mNotifCollection; field in ShadeListBuilderTest
148 mListBuilder.attach(mNotifCollection); in setUp()
155 Mockito.verify(mNotifCollection).setBuildListener(mBuildListenerCaptor.capture()); in setUp()