Home
last modified time | relevance | path

Searched refs:hasFilteredOutSeenNotifications (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/domain/interactor/
DSeenNotificationsInteractorTest.kt37 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/
DSeenNotificationsInteractor.kt34 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/
DFooterViewModelTest.kt95 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/
DNotificationListViewModelTest.kt283 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/
DNotificationListViewModel.kt228 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/
DActiveNotificationListRepository.kt40 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/
DFooterViewModel.kt54 isVisible = seenNotificationsInteractor.hasFilteredOutSeenNotifications, in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ui/viewbinder/
DNotificationListViewBinder.kt210 viewModel.hasFilteredOutSeenNotifications, in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DKeyguardCoordinator.kt507 seenNotificationsInteractor.hasFilteredOutSeenNotifications.value in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DKeyguardCoordinatorTest.kt255 assertThat(seenNotificationsInteractor.hasFilteredOutSeenNotifications.value).isTrue() in unseenFilterUpdatesSeenProviderWhenSuppressing()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java740 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()