/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/domain/interactor/ |
D | SeenNotificationsInteractorTest.kt | 37 val hasFilteredOutSeenNotifications by in <lambda>() constant 38 collectLastValue(underTest.hasFilteredOutSeenNotifications) in <lambda>() 42 assertThat(hasFilteredOutSeenNotifications).isFalse() in <lambda>() 47 val hasFilteredOutSeenNotifications by in <lambda>() constant 48 collectLastValue(underTest.hasFilteredOutSeenNotifications) in <lambda>() 52 assertThat(hasFilteredOutSeenNotifications).isTrue() in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/domain/interactor/ |
D | SeenNotificationsInteractor.kt | 34 val hasFilteredOutSeenNotifications: StateFlow<Boolean> = constant in com.android.systemui.statusbar.notification.domain.interactor.SeenNotificationsInteractor 35 notificationListRepository.hasFilteredOutSeenNotifications 39 notificationListRepository.hasFilteredOutSeenNotifications.value = value in setHasFilteredOutSeenNotifications()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/footer/ui/viewmodel/ |
D | FooterViewModelTest.kt | 95 activeNotificationListRepository.hasFilteredOutSeenNotifications.value = true in messageVisible_whenFilteredNotifications() 105 activeNotificationListRepository.hasFilteredOutSeenNotifications.value = false in messageVisible_whenNoFilteredNotifications() 159 activeNotificationListRepository.hasFilteredOutSeenNotifications.value = true in clearAllButtonVisible_whenMessageVisible() 262 activeNotificationListRepository.hasFilteredOutSeenNotifications.value = true in manageButtonVisible_whenMessageVisible() 272 activeNotificationListRepository.hasFilteredOutSeenNotifications.value = false in manageButtonVisible_whenMessageNotVisible()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/stack/ui/viewmodel/ |
D | NotificationListViewModelTest.kt | 283 val hasFilteredNotifs by collectLastValue(underTest.hasFilteredOutSeenNotifications) in hasFilteredOutSeenNotifications_true() 285 activeNotificationListRepository.hasFilteredOutSeenNotifications.value = true in hasFilteredOutSeenNotifications_true() 294 val hasFilteredNotifs by collectLastValue(underTest.hasFilteredOutSeenNotifications) in hasFilteredOutSeenNotifications_false() 296 activeNotificationListRepository.hasFilteredOutSeenNotifications.value = false in hasFilteredOutSeenNotifications_false()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ui/viewmodel/ |
D | NotificationListViewModel.kt | 228 val hasFilteredOutSeenNotifications: Flow<Boolean> by lazy { in <lambda>() constant 232 seenNotificationsInteractor.hasFilteredOutSeenNotifications.dumpWhileCollecting( in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/data/repository/ |
D | ActiveNotificationListRepository.kt | 40 val hasFilteredOutSeenNotifications = MutableStateFlow(false) constant in com.android.systemui.statusbar.notification.data.repository.ActiveNotificationListRepository
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/footer/ui/viewmodel/ |
D | FooterViewModel.kt | 54 isVisible = seenNotificationsInteractor.hasFilteredOutSeenNotifications, in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ui/viewbinder/ |
D | NotificationListViewBinder.kt | 210 viewModel.hasFilteredOutSeenNotifications, in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | KeyguardCoordinator.kt | 507 seenNotificationsInteractor.hasFilteredOutSeenNotifications.value in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | KeyguardCoordinatorTest.kt | 255 assertThat(seenNotificationsInteractor.hasFilteredOutSeenNotifications.value).isTrue() in unseenFilterUpdatesSeenProviderWhenSuppressing()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayout.java | 740 public void setHasFilteredOutSeenNotifications(boolean hasFilteredOutSeenNotifications) { in setHasFilteredOutSeenNotifications() argument 742 mHasFilteredOutSeenNotifications = hasFilteredOutSeenNotifications; in setHasFilteredOutSeenNotifications() 4605 boolean hasFilteredOutSeenNotifications) { in updateEmptyShadeView() argument 4610 } else if (hasFilteredOutSeenNotifications) { in updateEmptyShadeView()
|