Home
last modified time | relevance | path

Searched refs:FLAG_BUBBLE (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DNotificationTestHelper.java19 import static android.app.Notification.FLAG_BUBBLE;
180 n.flags |= FLAG_BUBBLE; in createBubble()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotificationEntry.java24 import static android.app.Notification.FLAG_BUBBLE;
238 return (notification.getNotification().flags & FLAG_BUBBLE) != 0; in isBubble()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/
DBubbleControllerTest.java19 import static android.app.Notification.FLAG_BUBBLE;
552 mRow.getEntry().notification.getNotification().flags &= ~FLAG_BUBBLE; in testRemoveBubble_noLongerBubbleAfterUpdate()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/
DBubbleController.java19 import static android.app.Notification.FLAG_BUBBLE;
555 bubble.entry.notification.getNotification().flags &= ~FLAG_BUBBLE;
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DNotificationManagerServiceTest.java23 import static android.app.Notification.FLAG_BUBBLE;
4278 assertTrue((notifs[0].getNotification().flags & FLAG_BUBBLE) != 0); in testFlagBubble()
4302 assertEquals((notifs[0].getNotification().flags & FLAG_BUBBLE), 0); in testFlagBubble_noFlag_appNotAllowed()
4786 nr.sbn.getNotification().flags |= FLAG_BUBBLE; in testCancelAllNotifications_cancelsBubble()
4800 nrBubble.sbn.getNotification().flags |= FLAG_BUBBLE; in testAppCancelNotifications_cancelsBubbles()
4824 nrBubble.sbn.getNotification().flags |= FLAG_BUBBLE; in testCancelAllNotificationsFromListener_ignoresBubbles()
4841 nrBubble.sbn.getNotification().flags |= FLAG_BUBBLE; in testCancelNotificationsFromListener_ignoresBubbles()
4976 assertTrue((notifsBefore[0].getNotification().flags & FLAG_BUBBLE) != 0); in testNotificationBubbleChanged_false()
4985 assertEquals((notifsAfter[0].getNotification().flags & FLAG_BUBBLE), 0); in testNotificationBubbleChanged_false()
5003 assertEquals((notifsBefore[0].getNotification().flags & FLAG_BUBBLE), 0); in testNotificationBubbleChanged_true()
[all …]
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationManagerService.java22 import static android.app.Notification.FLAG_BUBBLE;
1041 r.getNotification().flags |= FLAG_BUBBLE;
1043 r.getNotification().flags &= ~FLAG_BUBBLE;
3189 FLAG_ONGOING_EVENT | FLAG_FOREGROUND_SERVICE | FLAG_BUBBLE,
4816 notification.flags |= FLAG_BUBBLE;
4818 notification.flags &= ~FLAG_BUBBLE;
4859 && (oldRecord.getNotification().flags & FLAG_BUBBLE) != 0;
6834 flagsToCheck |= FLAG_BUBBLE;
/frameworks/base/core/java/android/app/
DNotification.java629 public static final int FLAG_BUBBLE = 0x00001000; field in Notification
6264 return (flags & Notification.FLAG_BUBBLE) != 0;