/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/ |
D | BubbleControllerTest.java | 126 private TestableBubbleController mBubbleController; field in BubbleControllerTest 184 mBubbleController = new TestableBubbleController(mContext, in setUp() 192 mBubbleController.setBubbleStateChangeListener(mBubbleStateChangeListener); in setUp() 193 mBubbleController.setExpandListener(mBubbleExpandListener); in setUp() 207 mBubbleController.updateBubble(mRow.getEntry()); in testAddBubble() 208 assertTrue(mBubbleController.hasBubbles()); in testAddBubble() 215 assertFalse(mBubbleController.hasBubbles()); in testHasBubbles() 216 mBubbleController.updateBubble(mRow.getEntry()); in testHasBubbles() 217 assertTrue(mBubbleController.hasBubbles()); in testHasBubbles() 222 mBubbleController.updateBubble(mRow.getEntry()); in testRemoveBubble() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | StatusBarTouchableRegionManager.java | 40 private final BubbleController mBubbleController = Dependency.get(BubbleController.class); field in StatusBarTouchableRegionManager 63 mBubbleController.setBubbleStateChangeListener((hasBubbles) -> { in StatusBarTouchableRegionManager() 82 || mBubbleController.hasBubbles() in updateTouchableRegion() 143 Rect bubbleRect = mBubbleController.getTouchableRegion(); in onComputeInternalInsets()
|
D | StatusBarNotificationActivityStarter.java | 106 private final BubbleController mBubbleController; field in StatusBarNotificationActivityStarter 167 mBubbleController = bubbleController; in StatusBarNotificationActivityStarter() 358 mBubbleController.expandStackAndSelectBubble(notificationKey); in expandBubbleStackOnMainThread() 361 () -> mBubbleController.expandStackAndSelectBubble(notificationKey)); in expandBubbleStackOnMainThread()
|
D | NotificationGroupManager.java | 57 @Nullable private BubbleController mBubbleController = null; field in NotificationGroupManager 65 if (mBubbleController == null) { in getBubbleController() 66 mBubbleController = Dependency.get(BubbleController.class); in getBubbleController() 68 return mBubbleController; in getBubbleController()
|
D | StatusBar.java | 609 protected BubbleController mBubbleController; field in StatusBar 644 if (mBubbleController != null) { in start() 645 mBubbleController.setExpandListener(mBubbleExpandListener); in start() 1085 Dependency.get(BG_HANDLER), mActivityIntentHelper, mBubbleController); in setUpPresenter() 1131 mBubbleController = Dependency.get(BubbleController.class); in getDependencies() 1984 if (mBubbleController != null) { in animateCollapsePanels() 1985 mBubbleController.collapseStack(); in animateCollapsePanels() 2465 if (mBubbleController != null) { in dump() 2466 mBubbleController.dump(fd, pw, args); in dump() 2651 if (mBubbleController != null && mBubbleController.isStackExpanded()) { [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | NotificationClicker.java | 37 private final BubbleController mBubbleController; field in NotificationClicker 44 mBubbleController = bubbleController; in NotificationClicker() 82 mBubbleController.collapseStack(); in onClick()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
D | KeyButtonViewTest.java | 61 private BubbleController mBubbleController; field in KeyButtonViewTest 70 mBubbleController = mDependency.injectMockDependency(BubbleController.class); in setup() 114 when(mBubbleController.getExpandedDisplayId(mContext)).thenReturn(3); in testBubbleEvents_bubbleExpanded()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | StatusBarNotificationActivityStarterTest.java | 111 private BubbleController mBubbleController; field in StatusBarNotificationActivityStarterTest 173 mBubbleController); in setUp() 242 verify(mBubbleController).expandStackAndSelectBubble(eq(sbn.getKey())); in testOnNotificationClicked_bubble_noContentIntent_noKeyGuard() 273 verify(mBubbleController).expandStackAndSelectBubble(eq(sbn.getKey())); in testOnNotificationClicked_bubble_noContentIntent_keyGuardShowing() 303 verify(mBubbleController).expandStackAndSelectBubble(eq(sbn.getKey())); in testOnNotificationClicked_bubble_withContentIntent_keyGuardShowing()
|
D | StatusBarTest.java | 820 mBubbleController = bubbleController; in TestableStatusBar()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationViewHierarchyManager.java | 88 private final BubbleController mBubbleController; field in NotificationViewHierarchyManager 124 mBubbleController = bubbleController; in NotificationViewHierarchyManager() 150 || mBubbleController.isBubbleNotificationSuppressedFromShade(ent.key)) { in updateNotificationViews()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/ |
D | BubbleExpandedView.java | 107 private BubbleController mBubbleController = Dependency.get(BubbleController.class); field in BubbleExpandedView 139 mBubbleController.removeBubble(mBubble.getKey(), 183 post(() -> mBubbleController.removeBubble(mBubble.getKey(),
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | Dependency.java | 275 @Inject Lazy<BubbleController> mBubbleController; field in Dependency 471 mProviders.put(BubbleController.class, mBubbleController::get); in start()
|