Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationTestHelper.java235 return createBubble(makeBubbleMetadata(null), PKG, true); in createBubbleInGroup()
241 public ExpandableNotificationRow createBubble() in createBubble() method in NotificationTestHelper
243 return createBubble(makeBubbleMetadata(null), PKG, false); in createBubble()
251 public ExpandableNotificationRow createBubble(@Nullable PendingIntent deleteIntent) in createBubble() method in NotificationTestHelper
253 return createBubble(makeBubbleMetadata(deleteIntent), PKG, false); in createBubble()
261 public ExpandableNotificationRow createBubble(BubbleMetadata bubbleMetadata, String pkg) in createBubble() method in NotificationTestHelper
263 return createBubble(bubbleMetadata, pkg, false); in createBubble()
266 private ExpandableNotificationRow createBubble(BubbleMetadata bubbleMetadata, String pkg, in createBubble() method in NotificationTestHelper
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/
DNotificationInterruptStateProviderImplTest.java295 assertThat(mNotifInterruptionStateProvider.shouldHeadsUp(createBubble())).isFalse(); in testShouldNotHeadsUp_bubble()
408 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isTrue(); in testShouldBubbleUp()
418 NotificationEntry entry = createBubble(); in shouldNotBubbleUp_notAllowedToBubble()
464 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isFalse(); in shouldNotBubbleUp_suppressedInterruptions()
474 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isFalse(); in shouldNotBubbleUp_filteredOut()
477 private NotificationEntry createBubble() { in createBubble() method in NotificationInterruptStateProviderImplTest
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/
DBubbleControllerTest.java214 mRow = mNotificationTestHelper.createBubble(mDeleteIntent); in setUp()
215 mRow2 = mNotificationTestHelper.createBubble(mDeleteIntent); in setUp()
216 mRow3 = mNotificationTestHelper.createBubble(mDeleteIntent); in setUp()
DNewNotifPipelineBubbleControllerTest.java210 mRow = mNotificationTestHelper.createBubble(mDeleteIntent); in setUp()
211 mRow2 = mNotificationTestHelper.createBubble(mDeleteIntent); in setUp()
DBubbleDataTest.java135 ExpandableNotificationRow row = mNotificationTestHelper.createBubble(); in setUp()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationActivityStarterTest.java167 mBubbleNotificationRow = mNotificationTestHelper.createBubble(); in setUp()