/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | HeadsUpTouchHelper.java | 34 private HeadsUpManager mHeadsUpManager; field in HeadsUpTouchHelper 49 mHeadsUpManager = headsUpManager; in HeadsUpTouchHelper() 112 mHeadsUpManager.unpinAll(); in onInterceptTouchEvent() 122 if (mHeadsUpManager.shouldSwallowClick( in onInterceptTouchEvent() 136 mHeadsUpManager.setTrackingHeadsUp(tracking); 142 mHeadsUpManager.snooze();
|
D | NotificationsQuickSettingsContainer.java | 57 private HeadsUpManager mHeadsUpManager; field in NotificationsQuickSettingsContainer 79 mHeadsUpManager = SysUiServiceProvider.getComponent(getContext(), StatusBar.class) in onAttachedToWindow() 80 .mHeadsUpManager; in onAttachedToWindow() 81 mHeadsUpManager.addListener(this); in onAttachedToWindow() 88 mHeadsUpManager.removeListener(this); in onDetachedFromWindow() 195 boolean hasHeadsUp = mHeadsUpManager.getAllEntries().size() != 0; in onHeadsUpStateChanged()
|
D | NotificationGroupManager.java | 45 private HeadsUpManager mHeadsUpManager; field in NotificationGroupManager 423 if (mHeadsUpManager.isHeadsUp(child.key)) { in handleSuppressedSummaryHeadsUpped() 424 mHeadsUpManager.updateNotification(child, true); in handleSuppressedSummaryHeadsUpped() 426 mHeadsUpManager.showNotification(child); in handleSuppressedSummaryHeadsUpped() 430 mHeadsUpManager.releaseImmediately(entry.key); in handleSuppressedSummaryHeadsUpped() 449 mHeadsUpManager = headsUpManager; in setHeadsUpManager()
|
D | StatusBar.java | 527 mHeadsUpManager.releaseAllImmediately(); 1018 mHeadsUpManager = new HeadsUpManager(context, mStatusBarWindow, mGroupManager); in makeStatusBarView() 1019 mHeadsUpManager.setBar(this); in makeStatusBarView() 1020 mHeadsUpManager.addListener(this); in makeStatusBarView() 1021 mHeadsUpManager.addListener(mNotificationPanel); in makeStatusBarView() 1022 mHeadsUpManager.addListener(mGroupManager); in makeStatusBarView() 1023 mHeadsUpManager.addListener(mVisualStabilityManager); in makeStatusBarView() 1024 mNotificationPanel.setHeadsUpManager(mHeadsUpManager); in makeStatusBarView() 1025 mNotificationData.setHeadsUpManager(mHeadsUpManager); in makeStatusBarView() 1026 mGroupManager.setHeadsUpManager(mHeadsUpManager); in makeStatusBarView() [all …]
|
D | PanelView.java | 65 protected HeadsUpManager mHeadsUpManager; field in PanelView 299 && mHeadsUpManager.hasPinnedHeadsUp(); in onTouchEvent() 312 if (isFullyCollapsed() && !mHeadsUpManager.hasPinnedHeadsUp()) { in onTouchEvent() 461 } else if (mPanelClosedOnDown && !mHeadsUpManager.hasPinnedHeadsUp() && !mTracking) { in endMotionEvent() 1213 mHeadsUpManager = headsUpManager; in setHeadsUpManager()
|
D | NotificationPanelView.java | 717 mListenForHeadsUp = mCollapsedOnDown && mHeadsUpManager.hasPinnedHeadsUp(); in initDownStates() 1505 mHeadsUpManager.setIsExpanded(isExpanded); in updatePanelExpanded() 1560 … if (mClosingWithAlphaFadeOut && !mExpandingFromHeadsUp && !mHeadsUpManager.hasPinnedHeadsUp()) { in updateNotificationTranslucency() 1688 mHeadsUpManager.onExpandingFinished(); in onExpandingFinished() 2365 return mHeadsUpManager.hasPinnedHeadsUp() || mHeadsUpAnimatingAway;
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | StatusBarTest.java | 91 HeadsUpManager mHeadsUpManager; field in StatusBarTest 107 mHeadsUpManager = mock(HeadsUpManager.class); in setup() 122 mKeyguardIndicationController, mStackScroller, mHeadsUpManager, in setup() 281 when(mHeadsUpManager.isSnoozed(anyString())).thenReturn(false); in testShouldPeek_nonSuppressedGroupSummary() 302 when(mHeadsUpManager.isSnoozed(anyString())).thenReturn(false); in testShouldPeek_suppressedGroupSummary() 333 when(mHeadsUpManager.hasPinnedHeadsUp()).thenReturn(true); in testPanelOpenForPeek() 352 when(mHeadsUpManager.hasPinnedHeadsUp()).thenReturn(false); in testPanelOpenAndClear() 371 when(mHeadsUpManager.hasPinnedHeadsUp()).thenReturn(false); in testPanelOpenAndNoClear() 398 mHeadsUpManager = hum; in TestableStatusBar()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | RemoteInputController.java | 41 private final HeadsUpManager mHeadsUpManager; field in RemoteInputController 45 mHeadsUpManager = headsUpManager; in RemoteInputController() 117 mHeadsUpManager.setRemoteInputActive(entry, isRemoteInputActive(entry)); in apply()
|
D | NotificationData.java | 66 private HeadsUpManager mHeadsUpManager; field in NotificationData 263 mHeadsUpManager = headsUpManager; in setHeadsUpManager() 307 return mHeadsUpManager.compare(a, b);
|
D | ExpandableNotificationRow.java | 165 private HeadsUpManager mHeadsUpManager; field in ExpandableNotificationRow 756 mHeadsUpManager = headsUpManager; 1914 } else if (isHeadsUpAllowed() && mIsHeadsUp && mHeadsUpManager.isTrackingHeadsUp()) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/ |
D | AmbientState.java | 43 private HeadsUpManager mHeadsUpManager; field in AmbientState 174 mHeadsUpManager = headsUpManager; in setHeadsUpManager()
|
D | NotificationStackScrollLayout.java | 268 private HeadsUpManager mHeadsUpManager; field in NotificationStackScrollLayout 821 if (mTrackingHeadsUp || mHeadsUpManager.hasPinnedHeadsUp()) { in getAppearEndPosition() 822 appearPosition = mHeadsUpManager.getTopHeadsUpPinnedHeight(); in getAppearEndPosition() 911 mHeadsUpManager.addSwipedOutNotification(row.getStatusBarNotification().getKey()); in handleChildDismissed() 1092 && mHeadsUpManager.getTopEntry().entry.row != row in getChildAtPosition() 1094 mHeadsUpManager.getTopEntry().entry.row.getStatusBarNotification()) in getChildAtPosition() 4045 mHeadsUpManager = headsUpManager; in setHeadsUpManager()
|