Searched refs:getBitmap (Results 1 - 25 of 79) sorted by path

1234

/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java2305 && ((BitmapDrawable) drawable).getBitmap().isMutable();
2309 bitmap = ((BitmapDrawable) drawable).getBitmap();
2343 mergedDrawable.setTargetDensity(bitmapDrawable.getBitmap().getDensity());
H A DWallpaperManager.java712 public Bitmap getBitmap() { method in class:WallpaperManager
/frameworks/base/core/java/android/hardware/radio/
H A DRadioMetadata.java265 public Bitmap getBitmap(String key) { method in class:RadioMetadata
/frameworks/base/core/java/android/provider/
H A DMediaStore.java870 public static final Bitmap getBitmap(ContentResolver cr, Uri url) method in class:MediaStore.Images.Media
/frameworks/base/core/java/android/service/notification/
H A DNotificationListenerService.java837 final Bitmap largeIconBits = ((BitmapDrawable) d).getBitmap();
/frameworks/base/core/java/android/transition/
H A DCrossfade.java274 bitmap = ((TextureView) view).getBitmap();
H A DTransitionUtils.java125 return ((BitmapDrawable) drawable).getBitmap();
/frameworks/base/core/java/android/view/
H A DPointerIcon.java455 mBitmapFrames[i - 1] = ((BitmapDrawable)drawableFrame).getBitmap();
465 mBitmap = ((BitmapDrawable)drawable).getBitmap();
H A DTextureView.java534 * @see #getBitmap(android.graphics.Bitmap)
535 * @see #getBitmap(int, int)
537 public Bitmap getBitmap() { method in class:TextureView
538 return getBitmap(getWidth(), getHeight());
561 * @see #getBitmap(android.graphics.Bitmap)
562 * @see #getBitmap()
564 public Bitmap getBitmap(int width, int height) { method in class:TextureView
566 return getBitmap(Bitmap.createBitmap(getResources().getDisplayMetrics(),
589 * @see #getBitmap(int, int)
590 * @see #getBitmap()
595 public Bitmap getBitmap(Bitmap bitmap) { method in class:TextureView
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DImageUtils.java137 return ((BitmapDrawable) drawable).getBitmap();
H A DNotificationColorUtil.java126 return bd.getBitmap() != null && isGrayscaleIcon(bd.getBitmap());
145 return isGrayscaleIcon(icon.getBitmap());
/frameworks/base/core/jni/android/graphics/
H A DBitmapFactory.cpp333 reuseBitmap = GraphicsJNI::getBitmap(env, javaBitmap);
H A DBitmapRegionDecoder.cpp155 recycledBitmap = GraphicsJNI::getBitmap(env, javaBitmap);
H A DGraphics.cpp345 android::Bitmap* GraphicsJNI::getBitmap(JNIEnv* env, jobject bitmap) { function in class:GraphicsJNI
356 getBitmap(env, bitmap)->getSkBitmap(outBitmap);
360 return getBitmap(env, bitmap)->refPixelRef();
H A DGraphicsJNI.h55 static android::Bitmap* getBitmap(JNIEnv*, jobject bitmap);
/frameworks/base/core/tests/coretests/src/android/view/
H A DRemoteViewsTest.java73 assertSame(bitmap, ((BitmapDrawable)drawable).getBitmap());
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java1290 Bitmap bitmap = patch.getBitmap();
1308 Bitmap bitmap = patch.getBitmap();
H A DNinePatch.java179 public Bitmap getBitmap() { method in class:NinePatch
225 * to querying the width of the underlying bitmap returned by {@link #getBitmap()}.
233 * to querying the height of the underlying bitmap returned by {@link #getBitmap()}.
241 * This is equivalent to calling <code>getBitmap().hasAlpha()</code> on this
/frameworks/base/graphics/java/android/graphics/drawable/
H A DBitmapDrawable.java209 public final Bitmap getBitmap() { method in class:BitmapDrawable
H A DIcon.java114 public Bitmap getBitmap() { method in class:Icon
116 throw new IllegalStateException("called getBitmap() on " + this);
287 return new BitmapDrawable(context.getResources(), getBitmap());
392 getBitmap().isMutable() &&
393 getBitmap().getAllocationByteCount() >= MIN_ASHMEM_ICON_SIZE) {
394 setBitmap(getBitmap().createAshmemBitmap());
412 getBitmap().compress(Bitmap.CompressFormat.PNG, 100, dataStream);
481 return getBitmap() == otherIcon.getBitmap();
658 .append(getBitmap()
[all...]
H A DNinePatchDrawable.java287 mNinePatchState.mNinePatch.getBitmap().getNinePatchInsets();
637 final Bitmap bitmap = mNinePatch.getBitmap();
707 final NinePatch.InsetStruct insets = ninePatch.getBitmap().getNinePatchInsets();
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/drawable/
H A DIconTest.java48 .getBitmap();
113 .getBitmap();
136 .getBitmap();
160 .getBitmap();
203 .getBitmap();
/frameworks/base/media/java/android/media/
H A DMediaMetadata.java446 public Bitmap getBitmap(@BitmapKey String key) { method in class:MediaMetadata
524 Bitmap next = getBitmap(PREFERRED_BITMAP_ORDER[i]);
H A DMediaMetadataEditor.java364 public synchronized Bitmap getBitmap(int key, Bitmap defaultValue) method in class:MediaMetadataEditor
/frameworks/base/media/java/android/media/session/
H A DMediaSessionLegacyHelper.java86 Bitmap art = metadata.getBitmap(MediaMetadata.METADATA_KEY_ART);
91 Bitmap art = metadata.getBitmap(MediaMetadata.METADATA_KEY_ALBUM_ART);

Completed in 2605 milliseconds

1234