Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
H A DBubbleExtractorTest.java177 assertFalse(r.getNotification().isBubbleNotification()); in testAppYesChannelNo()
220 assertFalse(r.getNotification().isBubbleNotification()); in testAppYesChannelYesFeatureNo()
235 assertFalse(r.getNotification().isBubbleNotification()); in testAppNoChannelYes()
250 assertFalse(r.getNotification().isBubbleNotification()); in testAppNoChannelDefault()
265 assertFalse(r.getNotification().isBubbleNotification()); in testAppSelectedChannelDefault()
280 assertFalse(r.getNotification().isBubbleNotification()); in testAppSelectedChannelNo()
311 assertFalse(r.getNotification().isBubbleNotification()); in testAppSeletedChannelYesFeatureNo()
333 assertFalse(r.getNotification().isBubbleNotification()); in testFlagBubble_false_previouslyRemoved()
349 assertTrue(r.getNotification().isBubbleNotification()); in testFlagBubble_true_shortcutBubble()
365 assertTrue(r.getNotification().isBubbleNotification()); in testFlagBubble_true_intentBubble()
[all …]
H A DNotificationManagerServiceTest.java6315 nr.getSbn().getKey()).getNotification().isBubbleNotification()); in testFlagBubble()
6336 nr.getSbn().getKey()).getNotification().isBubbleNotification()); in testFlagBubble_noFlag_appNotAllowed()
6366 nr.getSbn().getKey()).getNotification().isBubbleNotification()); in testFlagBubbleNotifs_noFlag_whenAppForeground()
6385 nr.getSbn().getKey()).getNotification().isBubbleNotification()); in testFlagBubbleNotifs_flag_messaging()
6407 sbn.getKey()).getNotification().isBubbleNotification()); in testFlagBubbleNotifs_noFlag_noShortcut()
6427 nr.getSbn().getKey()).getNotification().isBubbleNotification()); in testFlagBubbleNotifs_noFlag_messaging_appNotAllowed()
7220 assertTrue(notif.isBubbleNotification()); in testNotificationBubbles_flagAutoExpandForeground_fails_notForeground()
7251 assertTrue(notif.isBubbleNotification()); in testNotificationBubbles_flagAutoExpandForeground_succeeds_foreground()
7292 assertTrue(notif.isBubbleNotification()); in testNotificationBubbles_flagRemoved_whenShortcutRemoved()
7314 assertFalse(notif2.getNotification().isBubbleNotification()); in testNotificationBubbles_flagRemoved_whenShortcutRemoved()
[all …]
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
H A DBubble.java446 mIsBubble = entry.getStatusBarNotification().getNotification().isBubbleNotification(); in setEntry()
/aosp12/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationRecord.java520 pw.println(prefix + "isBubble=" + notification.isBubbleNotification()); in dump()
H A DNotificationManagerService.java6755 && r.getNotification().isBubbleNotification())
7543 || record.getNotification().isBubbleNotification());
8028 || mIsBubble != r.getNotification().isBubbleNotification()
8077 r.getNotification().isBubbleNotification(),
9346 record.getNotification().isBubbleNotification()
/aosp12/frameworks/base/core/java/android/app/
H A DNotification.java6880 public boolean isBubbleNotification() { in isBubbleNotification() method in Notification.Builder