Home
last modified time | relevance | path

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

/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
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 …]
DNotificationManagerServiceTest.java6170 nr.getSbn().getKey()).getNotification().isBubbleNotification()); in testFlagBubble()
6191 nr.getSbn().getKey()).getNotification().isBubbleNotification()); in testFlagBubble_noFlag_appNotAllowed()
6221 nr.getSbn().getKey()).getNotification().isBubbleNotification()); in testFlagBubbleNotifs_noFlag_whenAppForeground()
6240 nr.getSbn().getKey()).getNotification().isBubbleNotification()); in testFlagBubbleNotifs_flag_messaging()
6262 sbn.getKey()).getNotification().isBubbleNotification()); in testFlagBubbleNotifs_noFlag_noShortcut()
6282 nr.getSbn().getKey()).getNotification().isBubbleNotification()); in testFlagBubbleNotifs_noFlag_messaging_appNotAllowed()
6308 nr.getSbn().getKey()).getNotification().isBubbleNotification()); in testFlagBubbleNotifs_noFlag_notBubble()
6329 nr.getSbn().getKey()).getNotification().isBubbleNotification()); in testFlagBubbleNotifs_noFlag_messaging_channelNotAllowed()
7074 assertTrue(notif.isBubbleNotification()); in testNotificationBubbles_flagAutoExpandForeground_fails_notForeground()
7105 assertTrue(notif.isBubbleNotification()); in testNotificationBubbles_flagAutoExpandForeground_succeeds_foreground()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubble.java454 mIsBubble = entry.getStatusBarNotification().getNotification().isBubbleNotification(); in setEntry()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationRecord.java516 pw.println(prefix + "isBubble=" + notification.isBubbleNotification()); in dump()
DNotificationManagerService.java6857 && r.getNotification().isBubbleNotification())
7623 || record.getNotification().isBubbleNotification());
8066 isBubble[i] = r.getNotification().isBubbleNotification();
8085 || isBubble[i] != r.getNotification().isBubbleNotification()
9314 record.getNotification().isBubbleNotification()
/frameworks/base/core/java/android/app/
DNotification.java6811 public boolean isBubbleNotification() { in isBubbleNotification() method in Notification.Builder