Home
last modified time | relevance | path

Searched refs:screenOrientations (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/app/
DIWallpaperManager.aidl58 in int[] screenOrientations, in List<Rect> crops, boolean allowBackup, in setWallpaper() argument
104 in int[] screenOrientations, in List<Rect> crops); in getFutureBitmapCrops() argument
111 Rect getBitmapCrop(in Point bitmapSize, in int[] screenOrientations, in List<Rect> crops); in getBitmapCrop() argument
DWallpaperManager.java1641 int[] screenOrientations = entries.stream().mapToInt(entry -> in getBitmapCrops() local
1645 screenOrientations, crops); in getBitmapCrops()
1672 int[] screenOrientations = entries.stream().mapToInt(entry -> in getWallpaperColors() local
1676 Rect crop = sGlobals.mService.getBitmapCrop(bitmapSize, screenOrientations, crops); in getWallpaperColors()
2339 int[] screenOrientations = new int[size]; in setBitmapWithCrops() local
2342 screenOrientations[i] = cropHints.keyAt(i); in setBitmapWithCrops()
2351 mContext.getOpPackageName(), screenOrientations, crops, allowBackup, in setBitmapWithCrops()
2540 int[] screenOrientations = new int[size]; in setStreamWithCrops() local
2543 screenOrientations[i] = cropHints.keyAt(i); in setStreamWithCrops()
2552 mContext.getOpPackageName(), screenOrientations, crops, allowBackup, in setStreamWithCrops()
/frameworks/base/services/core/java/com/android/server/wallpaper/
DWallpaperManagerService.java2307 int[] screenOrientations, List<Rect> crops) { in getFutureBitmapCrops() argument
2308 SparseArray<Rect> cropMap = getCropMap(screenOrientations, crops); in getFutureBitmapCrops()
2320 public Rect getBitmapCrop(Point bitmapSize, int[] screenOrientations, List<Rect> crops) { in getBitmapCrop() argument
2325 SparseArray<Rect> cropMap = getCropMap(screenOrientations, crops); in getBitmapCrop()
2892 int[] screenOrientations, List<Rect> crops, boolean allowBackup, in setWallpaper() argument
2898 + (screenOrientations == null ? null in setWallpaper()
2899 : Arrays.stream(screenOrientations).boxed().toList()) in setWallpaper()
2918 SparseArray<Rect> cropMap = !multiCrop() ? null : getCropMap(screenOrientations, crops); in setWallpaper()
2986 private SparseArray<Rect> getCropMap(int[] screenOrientations, List<Rect> crops) { in getCropMap() argument
2987 if ((crops == null ^ screenOrientations == null) in getCropMap()
[all …]