Searched refs:NotifStats (Results 1 – 5 of 5) sorted by relevance
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/ |
H A D | NotifStackController.kt | 24 fun setNotifStats(stats: NotifStats) 28 data class NotifStats( dataClass 37 val empty = NotifStats(0, false, false, false, false) 48 override fun setNotifStats(stats: NotifStats) {}
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
H A D | StackCoordinator.kt | 24 import com.android.systemui.statusbar.notification.collection.render.NotifStats 54 private fun calculateNotifStats(entries: List<ListEntry>): NotifStats { 73 return NotifStats(
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
H A D | StackCoordinatorTest.kt | 29 import com.android.systemui.statusbar.notification.collection.render.NotifStats 79 verify(stackController).setNotifStats(NotifStats(1, false, true, false, false)) 86 verify(stackController).setNotifStats(NotifStats(1, false, false, false, true))
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/ |
H A D | NotificationStackScrollLayoutControllerTest.java | 83 import com.android.systemui.statusbar.notification.collection.render.NotifStats; 506 mController.getNotifStackController().setNotifStats(NotifStats.getEmpty()); in testSetNotifStats_updatesHasFilteredOutSeenNotifications() 549 mController.getNotifStackController().setNotifStats(NotifStats.getEmpty()); in updateImportantForAccessibility_noChild_onKeyGuard_notImportantForA11y() 566 new NotifStats( in updateImportantForAccessibility_hasChild_onKeyGuard_importantForA11y() 589 new NotifStats( in updateImportantForAccessibility_hasChild_notOnKeyGuard_importantForA11y() 611 mController.getNotifStackController().setNotifStats(NotifStats.getEmpty()); in updateImportantForAccessibility_noChild_notOnKeyGuard_importantForA11y()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | NotificationStackScrollLayoutController.java | 106 import com.android.systemui.statusbar.notification.collection.render.NotifStats; 310 private NotifStats mNotifStats = NotifStats.getEmpty(); 2010 public void setNotifStats(@NonNull NotifStats notifStats) {
|