Home
last modified time | relevance | path

Searched refs:BubbleController (Results 1 – 18 of 18) 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()
181 assertBubbleRemoved(mBubbleA1, BubbleController.DISMISS_AGED); in test_collapsed_addBubble_atMaxBubbles_expiresOldest()
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()
366 mBubbleData.notificationEntryRemoved(mEntryA1, BubbleController.DISMISS_NOTIF_CANCEL); in test_collapsed_removeBubble_sortAndGrouping_withOngoing()
385 mBubbleData.notificationEntryRemoved(mEntryA2, BubbleController.DISMISS_NOTIF_CANCEL); in test_collapsed_removeBubble_selectionChanges()
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()
[all …]
DBubbleControllerTest.java130 private BubbleController.BubbleStateChangeListener mBubbleStateChangeListener;
132 private BubbleController.BubbleExpandListener mBubbleExpandListener;
219 mBubbleController.removeBubble(mRow.getEntry().key, BubbleController.DISMISS_USER_GESTURE); in testRemoveBubble()
238 mBubbleController.removeBubble(mRow.getEntry().key, BubbleController.DISMISS_USER_GESTURE); in testRemoveBubble_withDismissedNotif()
255 mBubbleController.dismissStack(BubbleController.DISMISS_USER_GESTURE); in testDismissStack()
373 BubbleController.DISMISS_USER_GESTURE); in testRemoveLastExpandedCollapses()
382 BubbleController.DISMISS_USER_GESTURE); in testRemoveLastExpandedCollapses()
527 mBubbleController.removeBubble(mRow.getEntry().key, BubbleController.DISMISS_AGED); in testDeleteIntent_removeBubble_aged()
534 mBubbleController.removeBubble(mRow.getEntry().key, BubbleController.DISMISS_USER_GESTURE); in testDeleteIntent_removeBubble_user()
542 mBubbleController.dismissStack(BubbleController.DISMISS_USER_GESTURE); in testDeleteIntent_dismissStack()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationClicker.java25 import com.android.systemui.bubbles.BubbleController;
37 private final BubbleController mBubbleController;
41 BubbleController bubbleController, in NotificationClicker()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarTouchableRegionManager.java30 import com.android.systemui.bubbles.BubbleController;
42 private final BubbleController mBubbleController = Dependency.get(BubbleController.class);
DEdgeBackGestureHandler.java55 import com.android.systemui.bubbles.BubbleController;
447 BubbleController bubbleController = Dependency.get(BubbleController.class); in sendEvent()
DStatusBarNotificationActivityStarter.java53 import com.android.systemui.bubbles.BubbleController;
106 private final BubbleController mBubbleController;
135 BubbleController bubbleController) { in StatusBarNotificationActivityStarter()
DStatusBar.java147 import com.android.systemui.bubbles.BubbleController;
590 protected BubbleController mBubbleController;
591 private final BubbleController.BubbleExpandListener mBubbleExpandListener =
645 mBubbleController = Dependency.get(BubbleController.class); in start()
1087 this, Dependency.get(BubbleController.class), mNotificationActivityStarter)); in setUpPresenter()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/
DBubbleTouchHandler.java63 private BubbleController mController = Dependency.get(BubbleController.class);
188 mController.dismissStack(BubbleController.DISMISS_USER_GESTURE); in onTouch()
192 BubbleController.DISMISS_USER_GESTURE); in onTouch()
DBubbleExpandedView.java21 import static com.android.systemui.bubbles.BubbleController.DEBUG_ENABLE_AUTO_BUBBLE;
96 private BubbleController mBubbleController = Dependency.get(BubbleController.class);
131 BubbleController.DISMISS_TASK_FINISHED));
524 if (BubbleController.canLaunchInActivityView(mContext, entry) && data != null) { in getBubbleIntent()
559 BubbleController.isForegroundApp(mContext, notification.getPackageName())); in logBubbleClickEvent()
DBubbleData.java33 import com.android.systemui.bubbles.BubbleController.DismissReason;
218 doRemove(key, BubbleController.DISMISS_BLOCKED); in notificationRankingUpdated()
254 .ifPresent((b) -> doRemove(b.getKey(), BubbleController.DISMISS_AGED)); in trim()
538 if (reason == BubbleController.DISMISS_USER_GESTURE) { in maybeSendDeleteIntent()
559 mStateChange.bubbleRemoved(bubble, BubbleController.DISMISS_BLOCKED); in onBubbleBlocked()
616 && BubbleController.isForegroundApp(mContext, entry.notification.getPackageName()); in shouldAutoExpand()
DBubbleController.java102 public class BubbleController implements ConfigurationController.ConfigurationListener { class
211 public BubbleController(Context context, StatusBarWindowController statusBarWindowController, in BubbleController() method in BubbleController
219 public BubbleController(Context context, StatusBarWindowController statusBarWindowController, in BubbleController() method in BubbleController
DBubbleStackView.java195 private BubbleController.BubbleExpandListener mExpandListener;
540 mBubbleData.dismissAll(BubbleController.DISMISS_ACCESSIBILITY_ACTION); in performAccessibilityActionInternal()
631 public void setExpandListener(BubbleController.BubbleExpandListener listener) { in setExpandListener()
1518 bv.setZ((BubbleController.MAX_BUBBLES in updateBubbleShadowsAndDotPosition()
1639 BubbleController.isForegroundApp(mContext, notification.getPackageName())); in logBubbleEvent()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DKeyButtonViewTest.java42 import com.android.systemui.bubbles.BubbleController;
61 private BubbleController mBubbleController;
70 mBubbleController = mDependency.injectMockDependency(BubbleController.class); in setup()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyButtonView.java58 import com.android.systemui.bubbles.BubbleController;
356 BubbleController bubbleController = Dependency.get(BubbleController.class); in sendEvent()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationActivityStarterTest.java57 import com.android.systemui.bubbles.BubbleController;
111 private BubbleController mBubbleController;
DStatusBarTest.java80 import com.android.systemui.bubbles.BubbleController;
200 mDependency.injectMockDependency(BubbleController.class); in setup()
265 mock(BubbleController.class), mock(NavigationBarController.class), in setup()
788 BubbleController bubbleController, in TestableStatusBar()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDependency.java37 import com.android.systemui.bubbles.BubbleController;
282 @Inject Lazy<BubbleController> mBubbleController;
467 mProviders.put(BubbleController.class, mBubbleController::get); in start()
/frameworks/base/cmds/statsd/src/
Datoms.proto5892 * frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/BubbleController.java