Home
last modified time | relevance | path

Searched refs:sectionStyleProvider (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
DSectionStyleProviderTest.kt61 private lateinit var sectionStyleProvider: SectionStyleProvider variable in com.android.systemui.statusbar.notification.collection.SectionStyleProviderTest
66 sectionStyleProvider = SectionStyleProvider(highPriorityProvider) in setUp()
72 sectionStyleProvider.setSilentSections(ImmutableList.of(allSilentSectioner)) in setUp()
77 assertThat(sectionStyleProvider.isSilent(fakeNotification(allSilentSectioner))).isTrue() in testIsSilent_silentSection()
86 assertThat(sectionStyleProvider.isSilent(fakeNotification(allAlertingSectioner))).isFalse() in testIsSilent_alertingSection()
94 assertThat(sectionStyleProvider.isSilent(listEntry)).isTrue() in testIsSilent_silentPeople()
102 assertThat(sectionStyleProvider.isSilent(listEntry)).isFalse() in testIsSilent_alertingPeople()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DRowAppearanceCoordinatorTest.kt56 @Mock private lateinit var sectionStyleProvider: SectionStyleProvider variable in com.android.systemui.statusbar.notification.collection.coordinator.RowAppearanceCoordinatorTest
69 sectionStyleProvider in setUp()
85 whenever(sectionStyleProvider.isMinimizedSection(eq(section1))).thenReturn(false) in testSetSystemExpandedOnlyOnFirst()
86 whenever(sectionStyleProvider.isMinimizedSection(eq(section1))).thenReturn(false) in testSetSystemExpandedOnlyOnFirst()
96 whenever(sectionStyleProvider.isMinimizedSection(eq(section1))).thenReturn(true) in testSetSystemExpandedNeverIfMinimized()
97 whenever(sectionStyleProvider.isMinimizedSection(eq(section1))).thenReturn(true) in testSetSystemExpandedNeverIfMinimized()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/domain/interactor/
DRenderNotificationListInteractor.kt42 private val sectionStyleProvider: SectionStyleProvider, in <lambda>() constant in com.android.systemui.statusbar.notification.domain.interactor.RenderNotificationListInteractor
50 buildActiveNotificationsStore(existingModels, sectionStyleProvider) { in <lambda>()
61 sectionStyleProvider: SectionStyleProvider, in buildActiveNotificationsStore()
64 ActiveNotificationsStoreBuilder(existingModels, sectionStyleProvider).apply(block).build() in buildActiveNotificationsStore()
68 private val sectionStyleProvider: SectionStyleProvider, in buildActiveNotificationsStore() constant in com.android.systemui.statusbar.notification.domain.interactor.ActiveNotificationsStoreBuilder
127 isAmbient = sectionStyleProvider.isMinimized(this), in buildActiveNotificationsStore()
129 isSilent = sectionStyleProvider.isSilent(this), in buildActiveNotificationsStore()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/notification/domain/interactor/
DRenderNotificationListInteractorKosmos.kt20 import com.android.systemui.statusbar.notification.collection.provider.sectionStyleProvider
25 RenderNotificationListInteractor(activeNotificationListRepository, sectionStyleProvider) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DNotifCoordinators.kt42 sectionStyleProvider: SectionStyleProvider,
138 sectionStyleProvider.setMinimizedSections(setOf(rankingCoordinator.minimizedSectioner))
140 sectionStyleProvider.setSilentSections(
147 sectionStyleProvider.setSilentSections(
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/notification/collection/provider/
DSectionStyleProviderKosmos.kt22 var Kosmos.sectionStyleProvider: SectionStyleProvider by Kosmos.Fixture { mock() } in <lambda>() variable
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/inflation/
DNotifUiAdjustmentProvider.kt51 private val sectionStyleProvider: SectionStyleProvider, constant in com.android.systemui.statusbar.notification.collection.inflation.NotifUiAdjustmentProvider
124 val isMinimizedSection = sectionStyleProvider.isMinimizedSection(section) in isEntryMinimized()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/inflation/
DNotifUiAdjustmentProviderTest.kt63 private val sectionStyleProvider: SectionStyleProvider = mock() constant in com.android.systemui.statusbar.notification.collection.inflation.NotifUiAdjustmentProviderTest
83 sectionStyleProvider,
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/domain/interactor/
DRenderNotificationsListInteractorTest.kt46 sectionStyleProvider = mock(), in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DLegacyNotificationIconAreaControllerImpl.java135 SectionStyleProvider sectionStyleProvider, in LegacyNotificationIconAreaControllerImpl() argument
148 mSectionStyleProvider = sectionStyleProvider; in LegacyNotificationIconAreaControllerImpl()