Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
H A DBubblesTest.java400 mBubbleController.removeBubble( in testRemoveBubble()
416 mBubbleController.removeBubble( in testPromoteBubble_autoExpand()
447 mBubbleController.removeBubble( in testCancelOverflowBubble()
450 mBubbleController.removeBubble( in testCancelOverflowBubble()
463 mBubbleController.removeBubble( in testUserChange_doesNotRemoveNotif()
648 mBubbleController.removeBubble( in testRemoveLastExpanded_selectsOverflow()
660 mBubbleController.removeBubble( in testRemoveLastExpanded_selectsOverflow()
687 mBubbleController.removeBubble( in testRemoveLastExpandedEmptyOverflow_collapses()
813 mBubbleController.removeBubble( in testDeleteIntent_removeBubble_user()
911 mBubbleController.removeBubble( in removeNotif_inOverflow_intercepted()
[all …]
H A DNewNotifPipelineBubblesTest.java362 mBubbleController.removeBubble( in testRemoveBubble()
382 mBubbleController.removeBubble( in testRemoveBubble_withDismissedNotif_inOverflow()
405 mBubbleController.removeBubble( in testRemoveBubble_withDismissedNotif_notInOverflow()
592 mBubbleController.removeBubble( in testRemoveLastExpanded_selectsOverflow()
604 mBubbleController.removeBubble( in testRemoveLastExpanded_selectsOverflow()
631 mBubbleController.removeBubble( in testRemoveLastExpandedEmptyOverflow_collapses()
737 mBubbleController.removeBubble(mRow.getKey(), Bubbles.DISMISS_AGED); in testDeleteIntent_removeBubble_aged()
744 mBubbleController.removeBubble( in testDeleteIntent_removeBubble_user()
810 mBubbleController.removeBubble(mRow.getKey(), Bubbles.DISMISS_USER_GESTURE); in removeBubble_dismissIntoOverflow_intercepted()
829 mBubbleController.removeBubble(mRow.getKey(), Bubbles.DISMISS_NOTIF_CANCEL); in removeBubble_notIntercepted()
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
H A DBubbleData.java447 final Consumer<Bubble> removeBubble = bubble -> in removeBubblesWithInvalidShortcuts() local
450 performActionOnBubblesMatching(getBubbles(), invalidBubblesFromPackage, removeBubble); in removeBubblesWithInvalidShortcuts() local
452 getOverflowBubbles(), invalidBubblesFromPackage, removeBubble); in removeBubblesWithInvalidShortcuts() local
460 final Consumer<Bubble> removeBubble = bubble -> in removeBubblesWithPackageName() local
463 performActionOnBubblesMatching(getBubbles(), bubbleMatchesPackage, removeBubble); in removeBubblesWithPackageName() local
464 performActionOnBubblesMatching(getOverflowBubbles(), bubbleMatchesPackage, removeBubble); in removeBubblesWithPackageName() local
H A DBubbleController.java284 mMainExecutor.execute(() -> removeBubble(bubble.getKey(), DISMISS_INVALID_INTENT)); in initialize()
969 public void removeBubble(String key, int reason) { in removeBubble() method in BubbleController
986 removeBubble(entry.getKey(), DISMISS_NO_LONGER_BUBBLE); in onEntryUpdated()
1000 removeBubble(bubbleChildren.get(i).getKey(), DISMISS_GROUP_CANCELLED); in onEntryRemoved()
1003 removeBubble(entry.getKey(), DISMISS_NOTIF_CANCEL); in onEntryRemoved()
1129 mStackView.removeBubble(bubble);
H A DBubbleExpandedView.java185 mController.removeBubble(getBubbleKey(), Bubbles.DISMISS_INVALID_INTENT);
223 post(() -> mController.removeBubble(
H A DBubbleStackView.java1572 void removeBubble(Bubble bubble) { in removeBubble() method in BubbleStackView