Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/
DBubbleControllerTest.java208 assertTrue(mBubbleController.hasBubbles()); in testAddBubble()
215 assertFalse(mBubbleController.hasBubbles()); in testHasBubbles()
217 assertTrue(mBubbleController.hasBubbles()); in testHasBubbles()
224 assertTrue(mBubbleController.hasBubbles()); in testRemoveBubble()
240 assertTrue(mBubbleController.hasBubbles()); in testRemoveBubble_withDismissedNotif()
253 assertFalse(mBubbleController.hasBubbles()); in testRemoveBubble_withDismissedNotif()
264 assertTrue(mBubbleController.hasBubbles()); in testDismissStack()
282 assertTrue(mBubbleController.hasBubbles()); in testExpandCollapseStack()
312 assertTrue(mBubbleController.hasBubbles()); in testCollapseAfterChangingExpandedBubble()
350 assertTrue(mBubbleController.hasBubbles()); in testExpansionRemovesShowInShadeAndDot()
[all …]
DBubbleDataTest.java127 assertThat(mBubbleData.hasBubbles()).isFalse(); in setUp()
462 assertThat(mBubbleData.hasBubbles()).isFalse(); in test_collapsed_expansion_whenEmpty_doesNothing()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarTouchableRegionManager.java63 mBubbleController.setBubbleStateChangeListener((hasBubbles) -> { in StatusBarTouchableRegionManager() argument
82 || mBubbleController.hasBubbles() in updateTouchableRegion()
DNotificationGroupManager.java200 boolean hasBubbles = false; in updateSuppression()
205 hasBubbles = true; in updateSuppression()
214 && (hasIsolatedChildren(group) || hasBubbles))); in updateSuppression()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/
DBubbleController.java177 void onHasBubblesChanged(boolean hasBubbles); in onHasBubblesChanged() argument
417 public boolean hasBubbles() { in hasBubbles() method in BubbleController
421 return mBubbleData.hasBubbles(); in hasBubbles()
806 if (mStatusBarStateListener.getCurrentState() == SHADE && hasBubbles()) { in updateStack()
808 mStackView.setVisibility(hasBubbles() ? VISIBLE : INVISIBLE); in updateStack()
815 boolean hasBubblesShowing = hasBubbles() && mStackView.getVisibility() == VISIBLE; in updateStack()
DBubbleData.java149 public boolean hasBubbles() { in hasBubbles() method in BubbleData