/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
H A D | HeadsUpCoordinator.kt | 224 isAlerting = mHeadsUpManager.isAlerting(logicalSummary.key), 271 isAlerting = mHeadsUpManager.isAlerting(childToReceiveParentAlert.key), 352 if (posted.isAlerting) { 356 if (posted.isAlerting) { 411 isAlerting = false, 428 val isAlerting = mHeadsUpManager.isAlerting(entry.key) regex 435 update.isAlerting = isAlerting 443 isAlerting = isAlerting, 451 if (posted.isAlerting) { 763 var isAlerting: Boolean, [all …]
|
H A D | VisualStabilityCoordinator.java | 131 return entry != null && mHeadsUpManager.isAlerting(entry.getKey())
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
H A D | AlertingNotificationManagerTest.java | 151 () -> wasAlerting[0] = anm.isAlerting(entry.getKey()); in verifyAlertingAtTime() 164 anm.isAlerting(entry.getKey())); in verifyAlertingAtTime() 188 assertTrue(alm.isAlerting(entry.getKey())); in testShowNotification_addsEntry() 203 assertFalse(alm.isAlerting(entry.getKey())); in testShowNotification_autoDismisses() 218 assertTrue(alm.isAlerting(entry.getKey())); in testRemoveNotification_removeDeferred() 233 assertFalse(alm.isAlerting(entry.getKey())); in testRemoveNotification_forceRemove()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
H A D | HeadsUpManagerTest.java | 269 () -> wasAlerting[0] = hum.isAlerting(entry.getKey()); in testShowNotification_sticky_neverAutoDismisses() 275 hum.isAlerting(entry.getKey())); in testShowNotification_sticky_neverAutoDismisses() 321 hum.isAlerting(entry.getKey())); in testRemoveNotification_beforeMinimumDisplayTime() 346 livedPastMinimumDisplayTime[0] = hum.isAlerting(entry.getKey()); in testRemoveNotification_afterMinimumDisplayTime() 349 livedPastRemoveAfterMinimumDisplayTime[0] = hum.isAlerting(entry.getKey()); in testRemoveNotification_afterMinimumDisplayTime() 363 assertFalse(hum.isAlerting(entry.getKey())); in testRemoveNotification_afterMinimumDisplayTime() 379 assertFalse(hum.isAlerting(entry.getKey())); in testRemoveNotification_releaseImmediately()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
H A D | NotificationLaunchAnimatorControllerTest.kt | 73 `when`(headsUpManager.isAlerting(notificationKey)).thenReturn(true) 142 `when`(headsUpManager.isAlerting(notificationKey)).thenReturn(false) 143 `when`(headsUpManager.isAlerting(summary.key)).thenReturn(true)
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
H A D | VisualStabilityCoordinatorTest.java | 136 when(mHeadsUpManager.isAlerting(mEntry.getKey())).thenReturn(false); in setUp() 369 when(mHeadsUpManager.isAlerting(mEntry.getKey())).thenReturn(true); in testMovingVisibleHeadsUpNotAllowed() 385 when(mHeadsUpManager.isAlerting(mEntry.getKey())).thenReturn(true); in testMovingInvisibleHeadsUpAllowed() 533 when(mHeadsUpManager.isAlerting(mEntry.getKey())).thenReturn(true); in testHeadsUp_allowedToChangeGroupAndSection()
|
H A D | HeadsUpCoordinatorTest.kt | 151 given(headsUpManager.isAlerting(anyString())).willAnswer { invocation ->
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
H A D | NotificationLaunchAnimatorController.kt | 162 headsUpManager.isAlerting(notificationKey) -> notification 164 headsUpManager.isAlerting(summaryEntry.key) -> summaryEntry.row
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/inflation/ |
H A D | OnUserInteractionCallbackImpl.java | 71 if (mHeadsUpManager.isAlerting(entry.getKey())) { in getDismissedByUserStats()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/ |
H A D | NotificationEntry.java | 964 public void setIsAlerting(boolean isAlerting) { in setIsAlerting() argument 965 mIsAlerting = isAlerting; in setIsAlerting() 968 public boolean isAlerting() { in isAlerting() method in NotificationEntry
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | HeadsUpManagerPhone.java | 211 if (isAlerting(entry.getKey())) { in onExpandingFinished() 343 if (isAlerting(entry.getKey())) {
|
H A D | StatusBarNotificationActivityStarter.java | 562 if (mHeadsUpManager != null && mHeadsUpManager.isAlerting(key)) { in removeHunAfterClick()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
H A D | HeadsUpManagerPhoneTest.java | 174 assertFalse(hmp.isAlerting(entry.getKey())); in testSwipedOutNotification()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | AlertingNotificationManager.java | 157 public boolean isAlerting(@NonNull String key) { in isAlerting() method in AlertingNotificationManager
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | AmbientState.java | 567 return mPulsing && entry.isAlerting(); in isPulsing()
|