Home
last modified time | relevance | path

Searched refs:WallpaperState (Results 1 – 2 of 2) sorted by relevance

/cts/tests/app/WallpaperTest/src/android/app/cts/wallpapers/
DWallpaperManagerTest.java24 import static android.app.cts.wallpapers.WallpaperManagerTestUtils.WallpaperState;
642 Map<Integer, Map<WallpaperState, Integer>> testMap = Map.of( in testClear()
644 Map.of(WallpaperState.LIVE_DIFF_MULTI, 1, WallpaperState.LIVE_SAME_SINGLE, 0), in testClear()
646 Map.of(WallpaperState.LIVE_DIFF_MULTI, 1, WallpaperState.LIVE_SAME_SINGLE, 0), in testClear()
648 WallpaperState.LIVE_DIFF_MULTI, 2, WallpaperState.LIVE_SAME_SINGLE, 1)); in testClear()
650 Map<WallpaperState, String> stateDescriptions = Map.of( in testClear()
651 WallpaperState.LIVE_DIFF_MULTI, "two different live wallpapers", in testClear()
652 WallpaperState.LIVE_SAME_SINGLE, "a shared live wallpaper"); in testClear()
665 for (Map.Entry<Integer, Map<WallpaperState, Integer>> entry : testMap.entrySet()) { in testClear()
667 Map<WallpaperState, Integer> map = entry.getValue(); in testClear()
[all …]
DWallpaperManagerTestUtils.java190 public enum WallpaperState { enum in WallpaperManagerTestUtils
210 WallpaperState( in WallpaperState() method in WallpaperManagerTestUtils.WallpaperState
392 WallpaperManager wallpaperManager, WallpaperState state) in goToState()