HomeSort by relevance Sort by last modified time
    Searched defs:BitmapUtils (Results 1 - 11 of 11) sorted by null

  /cts/hostsidetests/devicepolicy/app/CustomizationApp/src/com/android/cts/customizationapp/
CustomizationTest.java 25 import android.cts.util.BitmapUtils;
39 final Bitmap originalWallpaper = BitmapUtils.getWallpaperBitmap(mContext);
40 final Bitmap referenceWallpaper = BitmapUtils.generateRandomBitmap(97, 73);
48 Bitmap newWallpaper = BitmapUtils.getWallpaperBitmap(mContext);
49 assertTrue(BitmapUtils.compareBitmaps(newWallpaper, originalWallpaper));
52 wallpaperManager.setStream(BitmapUtils.bitmapToInputStream(referenceWallpaper));
54 newWallpaper = BitmapUtils.getWallpaperBitmap(mContext);
55 assertTrue(BitmapUtils.compareBitmaps(newWallpaper, originalWallpaper));
60 newWallpaper = BitmapUtils.getWallpaperBitmap(mContext);
61 assertTrue(BitmapUtils.compareBitmaps(newWallpaper, originalWallpaper))
    [all...]
  /cts/libs/deviceutil/src/android/cts/util/
BitmapUtils.java 30 public class BitmapUtils {
31 private BitmapUtils() {}
  /frameworks/opt/bitmap/src/com/android/bitmap/util/
BitmapUtils.java 21 public abstract class BitmapUtils {
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
BitmapUtils.java 28 public class BitmapUtils {
29 private static final String TAG = "BitmapUtils";
  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
BitmapUtils.java 29 public class BitmapUtils {
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
CustomizationRestrictionsTest.java 28 import android.cts.util.BitmapUtils;
121 final Bitmap originalWallpaper = BitmapUtils.getWallpaperBitmap(mContext);
134 wallpaperManager.setBitmap(BitmapUtils.generateRandomBitmap(97, 73));
136 Bitmap newWallpaper = BitmapUtils.getWallpaperBitmap(mContext);
137 assertFalse(BitmapUtils.compareBitmaps(newWallpaper, oldWallpaper));
141 final Bitmap wallpaperForStream = BitmapUtils.generateRandomBitmap(83, 69);
142 wallpaperManager.setStream(BitmapUtils.bitmapToInputStream(wallpaperForStream));
144 newWallpaper = BitmapUtils.getWallpaperBitmap(mContext);
145 assertFalse(BitmapUtils.compareBitmaps(newWallpaper, oldWallpaper));
151 newWallpaper = BitmapUtils.getWallpaperBitmap(mContext)
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/common/
BitmapUtils.java 32 public class BitmapUtils {
33 private static final String TAG = "BitmapUtils";
37 private BitmapUtils(){}
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BitmapUtils.java 32 public class BitmapUtils {
33 private static final String TAG = "BitmapUtils";
37 private BitmapUtils(){}
  /packages/apps/TV/src/com/android/tv/menu/
AppLinkCardView.java 40 import com.android.tv.util.BitmapUtils;
135 BitmapUtils.setColorFilterToDrawable(mIconColorFilter, appIcon);
209 BitmapUtils.setColorFilterToDrawable(mIconColorFilter, drawable);
  /packages/apps/TV/src/com/android/tv/util/
BitmapUtils.java 39 public final class BitmapUtils {
40 private static final String TAG = "BitmapUtils";
51 private BitmapUtils() { /* cannot be instantiated */ }
  /frameworks/opt/bitmap/src/com/android/bitmap/
DecodeTask.java 29 import com.android.bitmap.util.BitmapUtils;
325 BitmapUtils.calculateCroppedSrcRect(srcW, srcH, mDecodeOpts.destW,

Completed in 333 milliseconds