Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/
DBubbleControllerTest.java302 mBubbleController.removeBubble( in testRemoveBubble()
318 mBubbleController.removeBubble( in testPromoteBubble_autoExpand()
349 mBubbleController.removeBubble( in testCancelOverflowBubble()
352 mBubbleController.removeBubble( in testCancelOverflowBubble()
365 mBubbleController.removeBubble( in testUserChange_doesNotRemoveNotif()
568 mBubbleController.removeBubble( in testRemoveLastExpandedCollapses()
580 mBubbleController.removeBubble( in testRemoveLastExpandedCollapses()
708 mBubbleController.removeBubble(mRow.getEntry().getKey(), BubbleController.DISMISS_AGED); in testDeleteIntent_removeBubble_aged()
715 mBubbleController.removeBubble( in testDeleteIntent_removeBubble_user()
818 mBubbleController.removeBubble( in removeNotif_inOverflow_intercepted()
[all …]
DNewNotifPipelineBubbleControllerTest.java281 mBubbleController.removeBubble( in testRemoveBubble()
299 mBubbleController.removeBubble( in testRemoveBubble_withDismissedNotif_inOverflow()
322 mBubbleController.removeBubble( in testRemoveBubble_withDismissedNotif_notInOverflow()
506 mBubbleController.removeBubble( in testRemoveLastExpandedCollapses()
518 mBubbleController.removeBubble( in testRemoveLastExpandedCollapses()
620 mBubbleController.removeBubble(mRow.getEntry().getKey(), BubbleController.DISMISS_AGED); in testDeleteIntent_removeBubble_aged()
627 mBubbleController.removeBubble( in testDeleteIntent_removeBubble_user()
695 mBubbleController.removeBubble( in removeBubble_dismissIntoOverflow_intercepted()
716 mBubbleController.removeBubble( in removeBubble_notIntercepted()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/
DBubbleData.java389 final Consumer<Bubble> removeBubble = bubble -> in removeBubblesWithInvalidShortcuts() local
392 performActionOnBubblesMatching(getBubbles(), invalidBubblesFromPackage, removeBubble); in removeBubblesWithInvalidShortcuts() local
394 getOverflowBubbles(), invalidBubblesFromPackage, removeBubble); in removeBubblesWithInvalidShortcuts() local
402 final Consumer<Bubble> removeBubble = bubble -> in removeBubblesWithPackageName() local
405 performActionOnBubblesMatching(getBubbles(), bubbleMatchesPackage, removeBubble); in removeBubblesWithPackageName() local
406 performActionOnBubblesMatching(getOverflowBubbles(), bubbleMatchesPackage, removeBubble); in removeBubblesWithPackageName() local
DBubbleController.java412 () -> removeBubble(bubble.getKey(), in BubbleController()
1183 void removeBubble(String key, int reason) { in removeBubble() method in BubbleController
1203 removeBubble(entry.getKey(), DISMISS_NO_LONGER_BUBBLE); in onEntryUpdated()
1218 removeBubble(bubbleChildren.get(i).getKey(), DISMISS_GROUP_CANCELLED); in onEntryRemoved()
1221 removeBubble(entry.getKey(), DISMISS_NOTIF_CANCEL); in onEntryRemoved()
1318 mStackView.removeBubble(bubble);
DBubbleExpandedView.java171 mBubbleController.removeBubble(getBubbleKey(),
197 mBubbleController.removeBubble(getBubbleKey(),
245 post(() -> mBubbleController.removeBubble(mBubble.getKey(),
DBubbleStackView.java1536 void removeBubble(Bubble bubble) { in removeBubble() method in BubbleStackView