Home
last modified time | relevance | path

Searched refs:selectedGridOption (Results 1 – 7 of 7) sorted by relevance

/packages/apps/ThemePicker/tests/robotests/src/com/android/customization/picker/grid/data/repository/
DShapeGridRepositoryTest.kt97 val selectedGridOption = collectLastValue(underTest.selectedShapeOption) in selectedShapeOption_default() constant
99 assertThat(selectedGridOption()) in selectedShapeOption_default()
143 val selectedGridOption = collectLastValue(underTest.selectedGridOption) in selectedGridOption_default() constant
145 assertThat(selectedGridOption()) in selectedGridOption_default()
152 val selectedGridOption = collectLastValue(underTest.selectedGridOption) in selectedGridOption_shouldUpdateAfterApplyShapeGridOption() constant
156 assertThat(selectedGridOption()) in selectedGridOption_shouldUpdateAfterApplyShapeGridOption()
/packages/apps/ThemePicker/src/com/android/wallpaper/customization/ui/viewmodel/
DShapeGridPickerViewModel.kt117 val selectedGridOption = in <lambda>() constant
118 interactor.selectedGridOption in <lambda>()
125 combine(overridingGridKey, selectedGridOption) { overridingGridOptionKey, selectedGridOption in <lambda>() method
127 overridingGridOptionKey ?: selectedGridOption.key.value in <lambda>()
137 combine(overridingGridKey, selectedGridOption, overridingShapeKey, selectedShapeKey) { in <lambda>()
139 selectedGridOption, in <lambda>() method
143 (overridingGridKey != null && overridingGridKey != selectedGridOption.key.value) || in <lambda>()
149 overridingGridKey ?: selectedGridOption.key.value, in <lambda>()
/packages/apps/ThemePicker/tests/robotests/src/com/android/customization/picker/grid/domain/interactor/
DShapeGridInteractorTest.kt135 val selectedGridOption = collectLastValue(underTest.selectedGridOption) in selectedGridOption_default() constant
137 assertThat(selectedGridOption()) in selectedGridOption_default()
144 val selectedGridOption = collectLastValue(underTest.selectedGridOption) in selectedGridOption_shouldUpdateAfterApplyGridOption() constant
148 assertThat(selectedGridOption()) in selectedGridOption_shouldUpdateAfterApplyGridOption()
/packages/apps/ThemePicker/tests/robotests/src/com/android/wallpaper/customization/ui/viewmodel/
DShapeGridPickerViewModelTest.kt143 fun selectedGridOption() = in selectedGridOption() method in com.android.wallpaper.customization.ui.viewmodel.ShapeGridPickerViewModelTest
145 val selectedGridOption = collectLastValue(underTest.selectedGridOption) in selectedGridOption() constant
148 optionItem = selectedGridOption(), in selectedGridOption()
161 val selectedGridOption = collectLastValue(underTest.selectedGridOption) in selectedGridOption_shouldUpdate_afterOnApply() constant
172 optionItem = selectedGridOption(), in selectedGridOption_shouldUpdate_afterOnApply()
/packages/apps/ThemePicker/src/com/android/customization/picker/grid/domain/interactor/
DShapeGridInteractor.kt34 val selectedGridOption = repository.selectedGridOption constant in com.android.customization.picker.grid.domain.interactor.ShapeGridInteractor
/packages/apps/ThemePicker/src/com/android/customization/picker/grid/data/repository/
DShapeGridRepository.kt63 val selectedGridOption: Flow<GridOptionModel?> = in <lambda>() constant in com.android.customization.picker.grid.data.repository.ShapeGridRepository
/packages/apps/ThemePicker/src/com/android/wallpaper/customization/ui/binder/
DThemePickerCustomizationOptionBinder.kt298 optionsViewModel.shapeGridPickerViewModel.selectedGridOption.collect { in <lambda>()