Home
last modified time | relevance | path

Searched refs:NotifEvent (Results 1 – 6 of 6) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coalescer/
H A DGroupCoalescerTest.java95 NotifEvent notif1 = mNoMan.postNotif( in testUngroupedNotificationsAreNotCoalesced()
111 NotifEvent notif1 = mNoMan.postNotif( in testGroupedNotificationsAreCoalesced()
129 NotifEvent notif1 = mNoMan.postNotif( in testCoalescedNotificationsStillPassThroughRankingUpdate()
142 NotifEvent notif1 = mNoMan.postNotif(new NotificationEntryBuilder() in testCoalescedNotificationsArePosted()
149 NotifEvent notif2 = mNoMan.postNotif(new NotificationEntryBuilder() in testCoalescedNotificationsArePosted()
157 NotifEvent notif3 = mNoMan.postNotif(new NotificationEntryBuilder() in testCoalescedNotificationsArePosted()
186 NotifEvent notif2 = mNoMan.postNotif(new NotificationEntryBuilder() in testCoalescedEventsThatAreLaterUngroupedAreEmittedImmediatelyAndNotLater()
190 NotifEvent notif3 = mNoMan.postNotif(new NotificationEntryBuilder() in testCoalescedEventsThatAreLaterUngroupedAreEmittedImmediatelyAndNotLater()
228 NotifEvent notif1 = mNoMan.postNotif(new NotificationEntryBuilder() in testUpdatingCoalescedNotifTriggersBatchEmit()
266 NotifEvent notif1 = mNoMan.postNotif(new NotificationEntryBuilder() in testRemovingCoalescedNotifTriggersBatchEmit()
[all …]
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/notifcollection/
H A DNotifEvent.kt31 sealed class NotifEvent { regex
44 ) : NotifEvent() {
52 ) : NotifEvent() {
60 ) : NotifEvent() {
69 ) : NotifEvent() {
78 ) : NotifEvent() {
86 ) : NotifEvent() {
94 ) : NotifEvent() {
100 class RankingAppliedEvent() : NotifEvent() {
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
H A DNotifCollectionTest.java180 NotifEvent notif1 = mNoMan.postNotif( in testEventDispatchedWhenNotifPosted()
257 NotifEvent notif2 = mNoMan.postNotif(buildNotif(TEST_PACKAGE, 3) in testEventDispatchedWhenNotifUpdated()
296 NotifEvent notif1 = mNoMan.postNotif(buildNotif(TEST_PACKAGE, 3) in testRankingsAreUpdatedForOtherNotifs()
313 NotifEvent notif1 = mNoMan.postNotif(buildNotif(TEST_PACKAGE, 3) in testRankingUpdateIsProperlyIssuedToEveryone()
315 NotifEvent notif2 = mNoMan.postNotif(buildNotif(TEST_PACKAGE2, 8) in testRankingUpdateIsProperlyIssuedToEveryone()
317 NotifEvent notif3 = mNoMan.postNotif(buildNotif(TEST_PACKAGE, 77) in testRankingUpdateIsProperlyIssuedToEveryone()
704 NotifEvent notif0a = mNoMan.postNotif( in testUpdatingDismissedSummaryBringsChildrenBack()
732 NotifEvent notif0a = mNoMan.postNotif( in testDismissedChildrenAreNotResetByParentUpdate()
1269 NotifEvent unclearableNotif = mNoMan.postNotif( in testDismissAllNotificationsCallsDismissInterceptorsOnlyOnUnclearableNotifs()
1273 NotifEvent clearableNotif = mNoMan.postNotif( in testDismissAllNotificationsCallsDismissInterceptorsOnlyOnUnclearableNotifs()
[all …]
H A DNoManSimulator.java51 public NotifEvent postNotif(NotificationEntryBuilder builder) { in postNotif()
58 return new NotifEvent(entry.getSbn(), entry.getRanking(), rankingMap); in postNotif()
61 public NotifEvent retractNotif(StatusBarNotification sbn, int reason) { in retractNotif()
67 return new NotifEvent(sbn, null, rankingMap); in retractNotif()
92 public static class NotifEvent { class in NoManSimulator
98 private NotifEvent( in NotifEvent() method in NoManSimulator.NotifEvent
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/people/widget/
H A DPeopleSpaceWidgetManagerTest.java543 NotifEvent notif1b = mNoMan.retractNotif(notif1.sbn, 0); in testDoNotUpdateNotificationRemovedIfDifferentShortcutId()
564 NotifEvent notif1b = mNoMan.retractNotif(notif1.sbn, 0); in testDoNotUpdateNotificationRemovedIfDifferentPackageName()
638 NotifEvent notif1 = mNoMan.postNotif(builder); in testUpdateNotificationPostedIfExistingTile()
697 NotifEvent notif1 = mNoMan.postNotif(builder); in testUpdateMissedCallNotificationWithoutContentPostedIfExistingTile()
721 NotifEvent notif1 = mNoMan.postNotif(builder); in testUpdateMissedCallNotificationWithContentPostedIfExistingTile()
745 NotifEvent notif1 = mNoMan.postNotif(builder); in testUpdateMissedCallNotificationWithContentPostedIfMatchingUriTile()
776 NotifEvent notif1 = mNoMan.postNotif(builder); in testRemoveMissedCallNotificationWithContentPostedIfMatchingUriTile()
819 NotifEvent notif1 = mNoMan.postNotif(builder); in testUpdateMissedCallNotificationWithContentPostedIfMatchingUriTileFromSender()
863 NotifEvent notif1 = mNoMan.postNotif(builder); in testDoNotUpdateMissedCallNotificationWithContentPostedIfNoPersonsAttached()
896 NotifEvent notif1 = mNoMan.postNotif(builder); in testDoNotUpdateMissedCallNotificationWithContentPostedIfNotMatchingUriTile()
[all …]
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
H A DNotifCollection.java85 import com.android.systemui.statusbar.notification.collection.notifcollection.NotifEvent;
149 private Queue<NotifEvent> mEventQueue = new ArrayDeque<>();