Home
last modified time | relevance | path

Searched refs:DISMISS_USER_GESTURE (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/
DBubbleDataTest.java250 mBubbleData.dismissBubbleWithKey(mEntryA1.getKey(), Bubbles.DISMISS_USER_GESTURE); in testRemoveBubble()
254 assertBubbleRemoved(mBubbleA1, Bubbles.DISMISS_USER_GESTURE); in testRemoveBubble()
372 mBubbleData.dismissBubbleWithKey(mEntryA1.getKey(), Bubbles.DISMISS_USER_GESTURE); in testOverflow_maxReached_bubbleRemoved()
377 mBubbleData.dismissBubbleWithKey(mEntryA2.getKey(), Bubbles.DISMISS_USER_GESTURE); in testOverflow_maxReached_bubbleRemoved()
542 mBubbleData.dismissBubbleWithKey(mEntryA2.getKey(), Bubbles.DISMISS_USER_GESTURE); in test_collapsed_removeBubble_sort()
562 mBubbleData.dismissBubbleWithKey(mEntryA1.getKey(), Bubbles.DISMISS_USER_GESTURE); in test_collapsed_removeOldestBubble_doesNotCallOnOrderChanged()
675 mBubbleData.dismissBubbleWithKey(mEntryA1.getKey(), Bubbles.DISMISS_USER_GESTURE); in test_collapsed_removeLastBubble_clearsSelectedBubble()
775 mBubbleData.dismissBubbleWithKey(mEntryB2.getKey(), Bubbles.DISMISS_USER_GESTURE); in test_expanded_removeBubble()
799 mBubbleData.dismissBubbleWithKey(mEntryA2.getKey(), Bubbles.DISMISS_USER_GESTURE); in test_expanded_removeBubble_selectionChanges_whenSelectedRemoved()
803 mBubbleData.dismissBubbleWithKey(mEntryB1.getKey(), Bubbles.DISMISS_USER_GESTURE); in test_expanded_removeBubble_selectionChanges_whenSelectedRemoved()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbles.java60 @IntDef({DISMISS_USER_GESTURE, DISMISS_AGED, DISMISS_TASK_FINISHED, DISMISS_BLOCKED,
70 int DISMISS_USER_GESTURE = 1; field
DBubbleLogger.java116 } else if (r == Bubbles.DISMISS_USER_GESTURE) { in logOverflowAdd()
DBubbleData.java790 || reason == Bubbles.DISMISS_USER_GESTURE in overflowBubble()
1034 if (reason != Bubbles.DISMISS_USER_GESTURE) return; in maybeSendDeleteIntent()
DBubbleController.java1236 removeBubble(bubbleKey, Bubbles.DISMISS_USER_GESTURE); in dragBubbleToDismiss()
2440 mMainExecutor.execute(() -> mController.removeAllBubbles(Bubbles.DISMISS_USER_GESTURE)); in removeAllBubbles()
DBubbleStackView.java537 mBubbleData.dismissAll(Bubbles.DISMISS_USER_GESTURE);
2984 mBubbleData.dismissBubbleWithKey(bubble.getKey(), Bubbles.DISMISS_USER_GESTURE); in dismissBubbleIfExists()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
DBubblesTest.java639 mRow.getKey(), Bubbles.DISMISS_USER_GESTURE); in testRemoveBubble()
659 mRow.getKey(), Bubbles.DISMISS_USER_GESTURE); in testRemoveBubble_withDismissedNotif_inOverflow()
701 mBubbleData.dismissAll(Bubbles.DISMISS_USER_GESTURE); in testDismissStack()
869 Bubbles.DISMISS_USER_GESTURE); in testRemoveLastExpanded_collapses()
881 Bubbles.DISMISS_USER_GESTURE); in testRemoveLastExpanded_collapses()
1018 mRow.getKey(), Bubbles.DISMISS_USER_GESTURE); in testDeleteIntent_removeBubble_user()
1026 mBubbleData.dismissAll(Bubbles.DISMISS_USER_GESTURE); in testDeleteIntent_dismissStack()
1083 mBubbleController.removeBubble(mRow.getKey(), Bubbles.DISMISS_USER_GESTURE); in removeBubble_dismissIntoOverflow_intercepted()
1247 mBubbleData.dismissAll(Bubbles.DISMISS_USER_GESTURE); in testOnUserChanged_overflowState()
1261 mBubbleData.dismissAll(Bubbles.DISMISS_USER_GESTURE); in testOnUserChanged_overflowState()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/bar/
DBubbleBarLayerView.java21 import static com.android.wm.shell.bubbles.Bubbles.DISMISS_USER_GESTURE;
226 mBubbleController.dismissBubble(mExpandedBubble.getKey(), DISMISS_USER_GESTURE); in showExpandedView()
DBubbleBarExpandedView.java212 mManager.dismissBubble(bubble, Bubbles.DISMISS_USER_GESTURE); in initialize()
/frameworks/base/libs/WindowManager/Shell/multivalentTests/src/com/android/wm/shell/bubbles/
DBubbleStackViewTest.kt271 bubbleData.dismissBubbleWithKey(bubble1.key, Bubbles.DISMISS_USER_GESTURE) in <lambda>()