Home
last modified time | relevance | path

Searched refs:mBubbleController (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/
DBubbleControllerTest.java126 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/
DStatusBarTouchableRegionManager.java40 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()
DStatusBarNotificationActivityStarter.java106 private final BubbleController mBubbleController; field in StatusBarNotificationActivityStarter
167 mBubbleController = bubbleController; in StatusBarNotificationActivityStarter()
358 mBubbleController.expandStackAndSelectBubble(notificationKey); in expandBubbleStackOnMainThread()
361 () -> mBubbleController.expandStackAndSelectBubble(notificationKey)); in expandBubbleStackOnMainThread()
DNotificationGroupManager.java57 @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()
DStatusBar.java609 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/
DNotificationClicker.java37 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/
DKeyButtonViewTest.java61 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/
DStatusBarNotificationActivityStarterTest.java111 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()
DStatusBarTest.java820 mBubbleController = bubbleController; in TestableStatusBar()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationViewHierarchyManager.java88 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/
DBubbleExpandedView.java107 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/
DDependency.java275 @Inject Lazy<BubbleController> mBubbleController; field in Dependency
471 mProviders.put(BubbleController.class, mBubbleController::get); in start()