Home
last modified time | relevance | path

Searched refs:mHeadsUpAppearanceController (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DHeadsUpAppearanceControllerTest.java56 private HeadsUpAppearanceController mHeadsUpAppearanceController; field in HeadsUpAppearanceControllerTest
78 mHeadsUpAppearanceController = new HeadsUpAppearanceController( in setUp()
90 mHeadsUpAppearanceController.setAppearFraction(0.0f, 0.0f); in setUp()
98 mHeadsUpAppearanceController.onHeadsUpPinned(mFirst.getEntry()); in testShowinEntryUpdated()
103 mHeadsUpAppearanceController.onHeadsUpUnPinned(mFirst.getEntry()); in testShowinEntryUpdated()
112 mHeadsUpAppearanceController.onHeadsUpPinned(mFirst.getEntry()); in testShownUpdated()
113 Assert.assertTrue(mHeadsUpAppearanceController.isShown()); in testShownUpdated()
117 mHeadsUpAppearanceController.onHeadsUpUnPinned(mFirst.getEntry()); in testShownUpdated()
118 Assert.assertFalse(mHeadsUpAppearanceController.isShown()); in testShownUpdated()
126 mHeadsUpAppearanceController.onHeadsUpPinned(mFirst.getEntry()); in testHeaderUpdated()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBar.java602 private HeadsUpAppearanceController mHeadsUpAppearanceController; field in StatusBar
859 HeadsUpAppearanceController oldController = mHeadsUpAppearanceController; in makeStatusBarView()
860 if (mHeadsUpAppearanceController != null) { in makeStatusBarView()
862 mHeadsUpAppearanceController.destroy(); in makeStatusBarView()
864 mHeadsUpAppearanceController = new HeadsUpAppearanceController( in makeStatusBarView()
868 mHeadsUpAppearanceController.readFrom(oldController); in makeStatusBarView()
1749 return mHeadsUpAppearanceController.shouldBeVisible(); in headsUpShouldBeVisible()
DNotificationPanelView.java371 private HeadsUpAppearanceController mHeadsUpAppearanceController; field in NotificationPanelView
2933 && mHeadsUpAppearanceController.shouldBeVisible(); in updateKeyguardStatusBarForHeadsUp()
3198 if (mHeadsUpAppearanceController != null
3199 && mHeadsUpAppearanceController.shouldBeVisible()) {
3371 mHeadsUpAppearanceController = headsUpAppearanceController; in setHeadsUpAppearanceController()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java473 private HeadsUpAppearanceController mHeadsUpAppearanceController; field in NotificationStackScrollLayout
3299 mHeadsUpAppearanceController.updateHeader(row.getEntry());
5313 if (mHeadsUpAppearanceController != null) {
5314 mHeadsUpAppearanceController.onStateChanged();
5449 mHeadsUpAppearanceController = headsUpAppearanceController;