Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleExpandedViewManager.kt27 fun removeBubble(key: String, reason: Int) in setOverflowListener() method
62 override fun removeBubble(key: String, reason: Int) { in setOverflowListener() method
63 controller.removeBubble(key, reason) in setOverflowListener()
DBubbleTaskViewHelper.java145 mExpandedViewManager.removeBubble(
184 mExpandedViewManager.removeBubble(mBubble.getKey(), Bubbles.DISMISS_TASK_FINISHED);
DBubbleController.java160 void removeBubble(Bubble removedBubble); in removeBubble() method
400 mMainExecutor.execute(() -> removeBubble(bubble.getKey(), DISMISS_INVALID_INTENT)); in onInit()
1236 removeBubble(bubbleKey, Bubbles.DISMISS_USER_GESTURE); in dragBubbleToDismiss()
1686 public void removeBubble(String key, int reason) { in removeBubble() method in BubbleController
1718 removeBubble(entry.getKey(), DISMISS_NO_LONGER_BUBBLE); in onEntryUpdated()
1732 removeBubble(bubbleChildren.get(i).getKey(), DISMISS_GROUP_CANCELLED); in onEntryRemoved()
1735 removeBubble(entry.getKey(), DISMISS_NOTIF_CANCEL); in onEntryRemoved()
1854 public void removeBubble(Bubble removedBubble) {
1856 mStackView.removeBubble(removedBubble);
1916 public void removeBubble(Bubble removedBubble) {
[all …]
DBubbleData.java580 final Consumer<Bubble> removeBubble = bubble -> in removeBubblesWithInvalidShortcuts() local
583 performActionOnBubblesMatching(getBubbles(), invalidBubblesFromPackage, removeBubble); in removeBubblesWithInvalidShortcuts() local
585 getOverflowBubbles(), invalidBubblesFromPackage, removeBubble); in removeBubblesWithInvalidShortcuts() local
593 final Consumer<Bubble> removeBubble = bubble -> in removeBubblesWithPackageName() local
596 performActionOnBubblesMatching(getBubbles(), bubbleMatchesPackage, removeBubble); in removeBubblesWithPackageName() local
597 performActionOnBubblesMatching(getOverflowBubbles(), bubbleMatchesPackage, removeBubble); in removeBubblesWithPackageName() local
DBubbleExpandedView.java267 mManager.removeBubble(getBubbleKey(), Bubbles.DISMISS_INVALID_INTENT);
307 mManager.removeBubble(mBubble.getKey(), Bubbles.DISMISS_TASK_FINISHED);
DBubbleStackView.java2001 void removeBubble(Bubble bubble) { in removeBubble() method in BubbleStackView
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
DBubblesTest.java571 mBubbleController.removeBubble(bubbles.get(i).getKey(), in tearDown()
638 mBubbleController.removeBubble( in testRemoveBubble()
658 mBubbleController.removeBubble( in testRemoveBubble_withDismissedNotif_inOverflow()
680 mBubbleController.removeBubble( in testRemoveBubble_withDismissedNotif_notInOverflow()
866 mBubbleController.removeBubble( in testRemoveLastExpanded_collapses()
878 mBubbleController.removeBubble( in testRemoveLastExpanded_collapses()
904 mBubbleController.removeBubble( in testRemoveLastExpandedEmptyOverflow_collapses()
1010 mBubbleController.removeBubble(mRow.getKey(), Bubbles.DISMISS_AGED); in testDeleteIntent_removeBubble_aged()
1017 mBubbleController.removeBubble( in testDeleteIntent_removeBubble_user()
1083 mBubbleController.removeBubble(mRow.getKey(), Bubbles.DISMISS_USER_GESTURE); in removeBubble_dismissIntoOverflow_intercepted()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/bar/
DBubbleBarLayerView.java262 public void removeBubble(Bubble bubble, Runnable endAction) { in removeBubble() method in BubbleBarLayerView
/frameworks/base/libs/WindowManager/Shell/multivalentTests/src/com/android/wm/shell/bubbles/
DBubbleStackViewTest.kt450 override fun removeBubble(key: String, reason: Int) {} in <lambda>() method in com.android.wm.shell.bubbles.BubbleStackViewTest.FakeBubbleExpandedViewManager