Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbles.java60 @IntDef({DISMISS_USER_GESTURE, DISMISS_AGED, DISMISS_TASK_FINISHED, DISMISS_BLOCKED,
71 int DISMISS_AGED = 2; field
DBubbleLogger.java114 if (r == Bubbles.DISMISS_AGED) { in logOverflowAdd()
DBubbleData.java637 toRemove.forEach((b) -> doRemove(b.getKey(), Bubbles.DISMISS_AGED)); in trim()
789 || !(reason == Bubbles.DISMISS_AGED in overflowBubble()
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/
DBubbleDataTest.java347 assertBubbleRemoved(mBubbleA1, Bubbles.DISMISS_AGED); in testOverflow_add_stackAtMaxBubbles_overflowsOldest()
355 assertBubbleRemoved(mBubbleA2, Bubbles.DISMISS_AGED); in testOverflow_add_stackAtMaxBubbles_overflowsOldest()
940 mBubbleData.overflowBubble(Bubbles.DISMISS_AGED, mBubbleA1); in test_addToOverflow_doesntAllowDupes()
941 mBubbleData.overflowBubble(Bubbles.DISMISS_AGED, mBubbleA1); in test_addToOverflow_doesntAllowDupes()
942 mBubbleData.overflowBubble(Bubbles.DISMISS_AGED, mBubbleA1); in test_addToOverflow_doesntAllowDupes()
964 Pair.create(mBubbleA1, Bubbles.DISMISS_AGED)); in test_onMaxBubblesChanged_notExpanded()
966 Pair.create(mBubbleA2, Bubbles.DISMISS_AGED)); in test_onMaxBubblesChanged_notExpanded()
993 Pair.create(mBubbleA1, Bubbles.DISMISS_AGED)); in test_onMaxBubblesChanged_expanded()
995 Pair.create(mBubbleA2, Bubbles.DISMISS_AGED)); in test_onMaxBubblesChanged_expanded()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
DBubblesTest.java1010 mBubbleController.removeBubble(mRow.getKey(), Bubbles.DISMISS_AGED); in testDeleteIntent_removeBubble_aged()