Searched refs:FLAG_BUBBLE (Results 1 – 14 of 14) sorted by relevance
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/ |
D | BubbleEntry.java | 19 import static android.app.Notification.FLAG_BUBBLE; 101 mSbn.getNotification().flags &= ~FLAG_BUBBLE; in setFlagBubble() 104 mSbn.getNotification().flags |= FLAG_BUBBLE; in setFlagBubble() 110 return (mSbn.getNotification().flags & FLAG_BUBBLE) != 0; in isBubble()
|
/frameworks/base/services/core/java/com/android/server/notification/ |
D | BubbleExtractor.java | 18 import static android.app.Notification.FLAG_BUBBLE; 111 record.getNotification().flags |= FLAG_BUBBLE; in process() 113 record.getNotification().flags &= ~FLAG_BUBBLE; in process()
|
D | NotificationManagerService.java | 21 import static android.app.Notification.FLAG_BUBBLE; 1145 FLAG_FOREGROUND_SERVICE | FLAG_BUBBLE, false, r.getUserId(), 1423 r.getNotification().flags &= ~FLAG_BUBBLE; 6881 if ((flags & FLAG_BUBBLE) != 0) { 8799 flagsToCheck |= FLAG_BUBBLE;
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationTestHelper.java | 19 import static android.app.Notification.FLAG_BUBBLE; 246 n.flags |= FLAG_BUBBLE; in createBubble() 263 n.flags |= FLAG_BUBBLE; in createBubbleInGroup() 298 n.flags |= FLAG_BUBBLE; in createBubble()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/ |
D | NotificationInterruptStateProviderImplTest.java | 19 import static android.app.Notification.FLAG_BUBBLE; 452 entry.getSbn().getNotification().flags |= FLAG_BUBBLE; in shouldNotBubbleUp_invalidMetadata() 488 n.flags |= FLAG_BUBBLE; in createBubble()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/ |
D | NotificationEntry.java | 24 import static android.app.Notification.FLAG_BUBBLE; 373 return (mSbn.getNotification().flags & FLAG_BUBBLE) != 0; in isBubble() 402 mSbn.getNotification().flags &= ~FLAG_BUBBLE; in setFlagBubble() 405 mSbn.getNotification().flags |= FLAG_BUBBLE; in setFlagBubble()
|
D | NotifCollection.java | 702 && !hasFlag(entry, Notification.FLAG_BUBBLE) 719 && !hasFlag(entry, Notification.FLAG_BUBBLE)
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | BuzzBeepBlinkTest.java | 18 import static android.app.Notification.FLAG_BUBBLE; 1717 record.getNotification().flags |= FLAG_BUBBLE; in testBubbleSuppressedNotificationDoesntMakeSound() 1752 record.getNotification().flags |= FLAG_BUBBLE; in testBubbleUpdateMakesSound() 1770 record.getNotification().flags |= FLAG_BUBBLE; in testNewBubbleSuppressedNotifMakesSound()
|
D | NotificationManagerServiceTest.java | 22 import static android.app.Notification.FLAG_BUBBLE; 914 assertTrue((notifsAfter[0].getNotification().flags & FLAG_BUBBLE) != 0); in addGroupWithBubblesAndValidateAdded() 6168 assertTrue((notifs[0].getNotification().flags & FLAG_BUBBLE) != 0); in testFlagBubble() 6189 assertEquals((notifs[0].getNotification().flags & FLAG_BUBBLE), 0); in testFlagBubble_noFlag_appNotAllowed() 6335 nrBubble.getSbn().getNotification().flags |= FLAG_BUBBLE; in testCancelNotificationsFromApp_cancelsBubbles() 6361 nr.getSbn().getNotification().flags |= FLAG_BUBBLE; in testCancelAllNotificationsFromApp_cancelsBubble() 6376 nrBubble.getSbn().getNotification().flags |= FLAG_BUBBLE; in testCancelAllNotificationsFromListener_ignoresBubbles() 6439 nr.getSbn().getNotification().flags |= FLAG_BUBBLE; in testCancelAllNotificationsFromStatusBar_ignoresBubble() 6576 assertTrue((notifsBefore[0].getNotification().flags & FLAG_BUBBLE) != 0); in testNotificationBubbleChanged_false() 6585 assertEquals((notifsAfter[0].getNotification().flags & FLAG_BUBBLE), 0); in testNotificationBubbleChanged_false() [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/ |
D | NewNotifPipelineBubblesTest.java | 19 import static android.app.Notification.FLAG_BUBBLE; 711 mRow.getSbn().getNotification().flags &= ~FLAG_BUBBLE; in testRemoveBubble_noLongerBubbleAfterUpdate()
|
D | BubblesTest.java | 19 import static android.app.Notification.FLAG_BUBBLE; 833 mRow.getSbn().getNotification().flags &= ~FLAG_BUBBLE; in testRemoveBubble_noLongerBubbleAfterUpdate()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/ |
D | NotifCollectionTest.java | 799 .setFlag(mContext, Notification.FLAG_BUBBLE, true)); in testDismissingSummaryDoesNotDismissBubbledChildren()
|
/frameworks/base/core/java/android/app/ |
D | Notification.java | 695 public static final int FLAG_BUBBLE = 0x00001000; field in Notification 706 FLAG_LOCAL_ONLY, FLAG_GROUP_SUMMARY, FLAG_AUTOGROUP_SUMMARY, FLAG_BUBBLE}) 6812 return (flags & Notification.FLAG_BUBBLE) != 0; in isBubbleNotification()
|
/frameworks/base/core/api/ |
D | current.txt | 5725 field public static final int FLAG_BUBBLE = 4096; // 0x1000
|