Searched refs:ARGB_8888 (Results 1 - 25 of 89) sorted by path

1234

/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java2088 bitmap = Bitmap.createBitmap(badgedWidth, badgedHeight, Bitmap.Config.ARGB_8888);
H A DLauncherActivity.java301 Bitmap.Config.ARGB_8888 : Bitmap.Config.RGB_565;
319 final Bitmap.Config c = Bitmap.Config.ARGB_8888;
H A DNotification.java2888 Bitmap bitmap = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888);
H A DUiAutomation.java670 Bitmap.Config.ARGB_8888);
H A DWallpaperManager.java527 (int) returnRect.height(), Bitmap.Config.ARGB_8888);
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java351 mOld = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
/frameworks/base/core/java/android/gesture/
H A DGesture.java186 final Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
222 Bitmap.Config.ARGB_8888);
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java649 mBuffer = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
/frameworks/base/core/java/android/transition/
H A DChangeBounds.java443 Bitmap.Config.ARGB_8888);
H A DCrossfade.java272 Bitmap.Config.ARGB_8888);
H A DTransitionUtils.java129 Bitmap bitmap = Bitmap.createBitmap(bitmapWidth, bitmapHeight, Bitmap.Config.ARGB_8888);
165 bitmap = Bitmap.createBitmap(bitmapWidth, bitmapHeight, Bitmap.Config.ARGB_8888);
/frameworks/base/core/java/android/view/
H A DTextureView.java503 * <p>The bitmap returned by this method uses the {@link Bitmap.Config#ARGB_8888}
511 * @return A valid {@link Bitmap.Config#ARGB_8888} bitmap, or null if the surface
527 * <p>The bitmap returned by this method uses the {@link Bitmap.Config#ARGB_8888}
538 * @return A valid {@link Bitmap.Config#ARGB_8888} bitmap, or null if the surface
548 width, height, Bitmap.Config.ARGB_8888));
H A DView.java15391 quality = Bitmap.Config.ARGB_8888;
15397 quality = use32BitCache ? Bitmap.Config.ARGB_8888 : Bitmap.Config.RGB_565;
H A DViewDebug.java756 1, 1, Bitmap.Config.ARGB_8888);
781 Bitmap.Config.ARGB_8888, 0, skipChildren);
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java1717 case ARGB_8888:
H A DStackView.java1420 v.getMeasuredWidth(), v.getMeasuredHeight(), Bitmap.Config.ARGB_8888);
/frameworks/base/core/java/com/android/internal/util/
H A DImageUtils.java66 COMPACT_BITMAP_SIZE, COMPACT_BITMAP_SIZE, Bitmap.Config.ARGB_8888
150 Bitmap result = Bitmap.createBitmap(scaledWidth, scaledHeight, Config.ARGB_8888);
H A DUserIcons.java53 Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java426 * It is recommended to use {@link #ARGB_8888} instead of this
431 * using {@link #ARGB_8888} instead.
434 * it is advised to use {@link #ARGB_8888} instead.
447 ARGB_8888 (5); enum constant in enum:Bitmap.Config
452 null, ALPHA_8, null, RGB_565, ARGB_4444, ARGB_8888
707 Config newConfig = Config.ARGB_8888;
709 // GIF files generate null configs, assume ARGB_8888
720 case ARGB_8888:
722 newConfig = Config.ARGB_8888;
739 bitmap = createBitmap(neww, newh, transformed ? Config.ARGB_8888
[all...]
H A DBitmapFactory.java136 * Image are loaded with the {@link Bitmap.Config#ARGB_8888} config by
139 public Bitmap.Config inPreferredConfig = Bitmap.Config.ARGB_8888;
H A DCanvas.java1272 if (!bitmap.isPremultiplied() && bitmap.getConfig() == Bitmap.Config.ARGB_8888 &&
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java1344 return bitmap != null && bitmap.getConfig() == Bitmap.Config.ARGB_8888;
H A DVectorDrawable.java835 Bitmap.Config.ARGB_8888);
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfRenderer.java332 * {@link Config#ARGB_8888 ARGB}.
350 if (destination.getConfig() != Config.ARGB_8888) {
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
H A DBitmapTest.java27 Bitmap bm1 = Bitmap.createBitmap(100, 200, Bitmap.Config.ARGB_8888);
55 assertTrue("getConfig", bm1.getConfig() == Bitmap.Config.ARGB_8888);
62 Bitmap bm1 = Bitmap.createBitmap(100, 200, Bitmap.Config.ARGB_8888);
64 Bitmap.Config.ARGB_8888);
87 Bitmap.Config.ARGB_8888);
129 Bitmap.Config config = Bitmap.Config.ARGB_8888;
185 Bitmap.Config config = Bitmap.Config.ARGB_8888;

Completed in 397 milliseconds

1234