Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/
DBubbleDataTest.java155 mBubbleData.notificationEntryRemoved(mEntryA1, BubbleController.DISMISS_USER_GESTURE); in testRemoveBubble()
159 assertBubbleRemoved(mBubbleA1, BubbleController.DISMISS_USER_GESTURE); in testRemoveBubble()
326 mBubbleData.notificationEntryRemoved(mEntryA2, BubbleController.DISMISS_USER_GESTURE); in test_collapsed_removeBubble_sortAndGrouping()
346 mBubbleData.notificationEntryRemoved(mEntryB1, BubbleController.DISMISS_USER_GESTURE); in test_collapsed_removeOldestBubble_doesNotCallOnOrderChanged()
476 mBubbleData.notificationEntryRemoved(mEntryA1, BubbleController.DISMISS_USER_GESTURE); in test_collapsed_removeLastBubble_clearsSelectedBubble()
630 mBubbleData.notificationEntryRemoved(mEntryB2, BubbleController.DISMISS_USER_GESTURE); in test_expanded_removeBubble_sortAndGrouping()
655 mBubbleData.notificationEntryRemoved(mEntryA2, BubbleController.DISMISS_USER_GESTURE); in test_expanded_removeBubble_selectionChanges_whenSelectedRemoved()
659 mBubbleData.notificationEntryRemoved(mEntryA1, BubbleController.DISMISS_USER_GESTURE); in test_expanded_removeBubble_selectionChanges_whenSelectedRemoved()
783 mBubbleData.notificationEntryRemoved(mEntryA1, BubbleController.DISMISS_USER_GESTURE); in test_expanded_removeLastBubble_collapsesStack()
DBubbleControllerTest.java228 mBubbleController.removeBubble(mRow.getEntry().key, BubbleController.DISMISS_USER_GESTURE); in testRemoveBubble()
247 mBubbleController.removeBubble(mRow.getEntry().key, BubbleController.DISMISS_USER_GESTURE); in testRemoveBubble_withDismissedNotif()
266 mBubbleController.dismissStack(BubbleController.DISMISS_USER_GESTURE); in testDismissStack()
419 BubbleController.DISMISS_USER_GESTURE); in testRemoveLastExpandedCollapses()
428 BubbleController.DISMISS_USER_GESTURE); in testRemoveLastExpandedCollapses()
543 mBubbleController.removeBubble(mRow.getEntry().key, BubbleController.DISMISS_USER_GESTURE); in testDeleteIntent_removeBubble_user()
551 mBubbleController.dismissStack(BubbleController.DISMISS_USER_GESTURE); in testDeleteIntent_dismissStack()
634 mBubbleController.removeBubble(mRow.getEntry().key, BubbleController.DISMISS_USER_GESTURE); in removeBubble_succeeds_userDismissBubble_userDimissNotif()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/
DBubbleTouchHandler.java194 mController.dismissStack(BubbleController.DISMISS_USER_GESTURE); in onTouch()
198 BubbleController.DISMISS_USER_GESTURE); in onTouch()
DBubbleController.java115 @IntDef({DISMISS_USER_GESTURE, DISMISS_AGED, DISMISS_TASK_FINISHED, DISMISS_BLOCKED,
121 static final int DISMISS_USER_GESTURE = 1; field in BubbleController
DBubbleData.java627 if (reason == BubbleController.DISMISS_USER_GESTURE) { in maybeSendDeleteIntent()