Home
last modified time | relevance | path

Searched refs:onHasBubblesChanged (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/
DBubbleControllerTest.java210 verify(mBubbleStateChangeListener).onHasBubblesChanged(true); in testAddBubble()
226 verify(mBubbleStateChangeListener).onHasBubblesChanged(true); in testRemoveBubble()
232 verify(mBubbleStateChangeListener).onHasBubblesChanged(false); in testRemoveBubble()
404 verify(mBubbleStateChangeListener).onHasBubblesChanged(true); in testRemoveLastExpandedCollapses()
432 verify(mBubbleStateChangeListener).onHasBubblesChanged(false); in testRemoveLastExpandedCollapses()
452 verify(mBubbleStateChangeListener).onHasBubblesChanged(true /* hasBubbles */); in testAutoExpand_FailsNotForeground()
470 verify(mBubbleStateChangeListener).onHasBubblesChanged(true /* hasBubbles */); in testAutoExpand_SucceedsForeground()
485 verify(mBubbleStateChangeListener).onHasBubblesChanged(true /* hasBubbles */); in testSuppressNotif_FailsNotForeground()
501 verify(mBubbleStateChangeListener).onHasBubblesChanged(true /* hasBubbles */); in testSuppressNotif_SucceedsForeground()
529 verify(mBubbleStateChangeListener, never()).onHasBubblesChanged(anyBoolean()); in testAddNotif_notBubble()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/
DBubbleController.java177 void onHasBubblesChanged(boolean hasBubbles); in onHasBubblesChanged() method
818 mStateChangeListener.onHasBubblesChanged(hasBubblesShowing); in updateStack()