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.java54 private HeadsUpAppearanceController mHeadsUpAppearanceController; field in HeadsUpAppearanceControllerTest
70 mHeadsUpAppearanceController = new HeadsUpAppearanceController( in setUp()
79 mHeadsUpAppearanceController.setExpandedHeight(0.0f, 0.0f); in setUp()
87 mHeadsUpAppearanceController.onHeadsUpPinned(mFirst.getEntry()); in testShowinEntryUpdated()
92 mHeadsUpAppearanceController.onHeadsUpUnPinned(mFirst.getEntry()); in testShowinEntryUpdated()
101 mHeadsUpAppearanceController.onHeadsUpPinned(mFirst.getEntry()); in testShownUpdated()
102 Assert.assertTrue(mHeadsUpAppearanceController.isShown()); in testShownUpdated()
106 mHeadsUpAppearanceController.onHeadsUpUnPinned(mFirst.getEntry()); in testShownUpdated()
107 Assert.assertFalse(mHeadsUpAppearanceController.isShown()); in testShownUpdated()
115 mHeadsUpAppearanceController.onHeadsUpPinned(mFirst.getEntry()); in testHeaderUpdated()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBar.java583 private HeadsUpAppearanceController mHeadsUpAppearanceController; field in StatusBar
839 HeadsUpAppearanceController oldController = mHeadsUpAppearanceController; in makeStatusBarView()
840 if (mHeadsUpAppearanceController != null) { in makeStatusBarView()
842 mHeadsUpAppearanceController.destroy(); in makeStatusBarView()
844 mHeadsUpAppearanceController = new HeadsUpAppearanceController( in makeStatusBarView()
846 mHeadsUpAppearanceController.readFrom(oldController); in makeStatusBarView()
1674 return mHeadsUpAppearanceController.shouldBeVisible(); in isHeadsUpShouldBeVisible()
DNotificationPanelView.java301 private HeadsUpAppearanceController mHeadsUpAppearanceController; field in NotificationPanelView
2850 if (mHeadsUpAppearanceController != null
2851 && mHeadsUpAppearanceController.shouldBeVisible()) {
3023 mHeadsUpAppearanceController = headsUpAppearanceController; in setHeadsUpAppearanceController()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java475 private HeadsUpAppearanceController mHeadsUpAppearanceController; field in NotificationStackScrollLayout
3258 mHeadsUpAppearanceController.updateHeader(row.getEntry());
5323 if (mHeadsUpAppearanceController != null) {
5324 mHeadsUpAppearanceController.setPublicMode(publicMode);
5464 mHeadsUpAppearanceController = headsUpAppearanceController;