Home
last modified time | relevance | path

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

/packages/apps/WallpaperPicker2/tests/robotests/src/com/android/wallpaper/picker/preview/data/repository/
DWallpaperPreviewRepositoryTest.kt102 assertThat(underTest.hasSmallPreviewTooltipBeenShown.value).isFalse() in dismissSmallTooltip()
108 assertThat(underTest.hasSmallPreviewTooltipBeenShown.value).isTrue() in dismissSmallTooltip()
123 assertThat(underTest.hasSmallPreviewTooltipBeenShown.value).isFalse() in dismissFullTooltip()
129 assertThat(underTest.hasSmallPreviewTooltipBeenShown.value).isFalse() in dismissFullTooltip()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/preview/domain/interactor/
DWallpaperPreviewInteractor.kt44 val hasSmallPreviewTooltipBeenShown: StateFlow<Boolean> = constant in com.android.wallpaper.picker.preview.domain.interactor.WallpaperPreviewInteractor
45 wallpaperPreviewRepository.hasSmallPreviewTooltipBeenShown
/packages/apps/WallpaperPicker2/tests/common/src/com/android/wallpaper/testing/
DTestWallpaperPreferences.kt87 private var hasSmallPreviewTooltipBeenShown = false variable in com.android.wallpaper.testing.TestWallpaperPreferences
490 this.hasSmallPreviewTooltipBeenShown = hasTooltipBeenShown in setHasSmallPreviewTooltipBeenShown()
494 return hasSmallPreviewTooltipBeenShown in getHasSmallPreviewTooltipBeenShown()
/packages/apps/WallpaperPicker2/tests/robotests/src/com/android/wallpaper/picker/preview/domain/interactor/
DWallpaperPreviewInteractorTest.kt107 assertThat(wallpaperPreviewInteractor.hasSmallPreviewTooltipBeenShown.value).isFalse() in hideSmallPreviewTooltip_succeeds()
111 assertThat(wallpaperPreviewInteractor.hasSmallPreviewTooltipBeenShown.value).isTrue() in hideSmallPreviewTooltip_succeeds()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/preview/data/repository/
DWallpaperPreviewRepository.kt52 val hasSmallPreviewTooltipBeenShown: StateFlow<Boolean> = constant in com.android.wallpaper.picker.preview.data.repository.WallpaperPreviewRepository
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/preview/ui/viewmodel/
DWallpaperPreviewViewModel.kt130 combine(isWallpaperCroppable, interactor.hasSmallPreviewTooltipBeenShown) { in <lambda>()