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.java202 verify(mBubbleStateChangeListener).onHasBubblesChanged(true); in testAddBubble()
217 verify(mBubbleStateChangeListener).onHasBubblesChanged(true); in testRemoveBubble()
223 verify(mBubbleStateChangeListener).onHasBubblesChanged(false); in testRemoveBubble()
358 verify(mBubbleStateChangeListener).onHasBubblesChanged(true); in testRemoveLastExpandedCollapses()
386 verify(mBubbleStateChangeListener).onHasBubblesChanged(false); in testRemoveLastExpandedCollapses()
404 verify(mBubbleStateChangeListener).onHasBubblesChanged(true /* hasBubbles */); in testAutoExpand_FailsNotForeground()
442 verify(mBubbleStateChangeListener).onHasBubblesChanged(true /* hasBubbles */); in testAutoExpand_SucceedsForeground()
456 verify(mBubbleStateChangeListener).onHasBubblesChanged(true /* hasBubbles */); in testSuppressNotif_FailsNotForeground()
492 verify(mBubbleStateChangeListener).onHasBubblesChanged(true /* hasBubbles */); in testSuppressNotif_SucceedsForeground()
520 verify(mBubbleStateChangeListener, never()).onHasBubblesChanged(anyBoolean()); in testAddNotif_notBubble()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/
DBubbleController.java170 void onHasBubblesChanged(boolean hasBubbles); in onHasBubblesChanged() method
653 mStateChangeListener.onHasBubblesChanged(hasBubblesShowing); in updateStack()