Home
last modified time | relevance | path

Searched refs:communalWidgets (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/communal/data/repository/
DCommunalWidgetRepositoryImplTest.kt135 val communalWidgets by collectLastValue(underTest.communalWidgets) in communalWidgets_queryWidgetsFromDb() constant
137 assertThat(communalWidgets) in communalWidgets_queryWidgetsFromDb()
172 val communalWidgets by collectLastValue(underTest.communalWidgets) in communalWidgets_widgetsWithoutMatchingProvidersAreSkipped() constant
173 assertThat(communalWidgets) in communalWidgets_widgetsWithoutMatchingProvidersAreSkipped()
206 val communalWidgets by collectLastValue(underTest.communalWidgets) in communalWidgets_updatedWhenProvidersUpdate() constant
207 assertThat(communalWidgets).isNotNull() in communalWidgets_updatedWhenProvidersUpdate()
208 assertThat(communalWidgets) in communalWidgets_updatedWhenProvidersUpdate()
230 assertThat(communalWidgets) in communalWidgets_updatedWhenProvidersUpdate()
562 val communalWidgets by collectLastValue(underTest.communalWidgets) in pendingWidgets() constant
563 assertThat(communalWidgets) in pendingWidgets()
[all …]
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/communal/widgets/
DCommunalAppWidgetHostStartableTest.kt192 val communalWidgets by in removeAppWidgetReportedByHost() constant
193 collectLastValue(fakeCommunalWidgetRepository.communalWidgets) in removeAppWidgetReportedByHost()
194 assertThat(communalWidgets).containsExactly(widget1, widget2, widget3) in removeAppWidgetReportedByHost()
199 assertThat(communalWidgets).containsExactly(widget2, widget3) in removeAppWidgetReportedByHost()
204 assertThat(communalWidgets).containsExactly(widget2) in removeAppWidgetReportedByHost()
228 val communalWidgets by in removeWidgetsForDeletedProfile_whenCommunalIsAvailable() constant
229 collectLastValue(fakeCommunalWidgetRepository.communalWidgets) in removeWidgetsForDeletedProfile_whenCommunalIsAvailable()
230 assertThat(communalWidgets).containsExactly(widget1, widget2, widget3) in removeWidgetsForDeletedProfile_whenCommunalIsAvailable()
245 assertThat(communalWidgets).containsExactly(widget3) in removeWidgetsForDeletedProfile_whenCommunalIsAvailable()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/communal/data/repository/
DFakeCommunalWidgetRepository.kt17 override val communalWidgets: Flow<List<CommunalWidgetContentModel>> = _communalWidgets constant in com.android.systemui.communal.data.repository.FakeCommunalWidgetRepository
/frameworks/base/packages/SystemUI/src/com/android/systemui/communal/data/repository/
DCommunalWidgetRepository.kt54 val communalWidgets: Flow<List<CommunalWidgetContentModel>> in <lambda>() constant
125 override val communalWidgets: Flow<List<CommunalWidgetContentModel>> = constant
/frameworks/base/packages/SystemUI/src/com/android/systemui/communal/widgets/
DCommunalAppWidgetHostStartable.kt55 .sample(communalInteractor.communalWidgets, ::Pair) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/communal/domain/interactor/
DCommunalInteractor.kt380 val communalWidgets: Flow<List<CommunalWidgetContentModel>> = in <lambda>() constant
382 if (!available) emptyFlow() else widgetRepository.communalWidgets in <lambda>()
388 widgetRepository.communalWidgets in <lambda>()