Home
last modified time | relevance | path

Searched refs:selectingWallpaperId (Results 1 – 5 of 5) sorted by relevance

/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/customization/ui/viewmodel/
DWallpaperQuickSwitchViewModel.kt52 private val selectingWallpaperId: Flow<String?> = in <lambda>() constant
54 .selectingWallpaperId(destination) in <lambda>()
80 selectingWallpaperId.distinctUntilChanged().map { it != null } in <lambda>()
88 selectingWallpaperId.distinctUntilChanged().map { in <lambda>()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/customization/domain/interactor/
DWallpaperInteractor.kt65 fun selectingWallpaperId( in selectingWallpaperId() method
68 return repository.selectingWallpaperId.map { it[destination] } in selectingWallpaperId()
75 return selectingWallpaperId(destination).distinctUntilChanged().map { it != null } in isSelectingWallpaper()
/packages/apps/WallpaperPicker2/tests/robotests/src/com/android/wallpaper/picker/customization/data/repository/
DWallpaperRepositoryTest.kt80 underTest.selectingWallpaperId.map { it[WallpaperDestination.HOME] } in setWallpaper()
84 underTest.selectingWallpaperId.map { it[WallpaperDestination.LOCK] } in setWallpaper()
/packages/apps/WallpaperPicker2/tests/robotests/src/com/android/wallpaper/picker/customization/domain/interactor/
DWallpaperInteractorTest.kt164 collectLastValue(underTest.selectingWallpaperId(WallpaperDestination.HOME)) in setWallpaper()
166 collectLastValue(underTest.selectingWallpaperId(WallpaperDestination.LOCK)) in setWallpaper()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/customization/data/repository/
DWallpaperRepository.kt93 val selectingWallpaperId: StateFlow<Map<WallpaperDestination, String?>> = in <lambda>() constant in com.android.wallpaper.picker.customization.data.repository.WallpaperRepository