HomeSort by relevance Sort by last modified time
    Searched refs:getBitmap (Results 26 - 50 of 389) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
DecodedImageResource.java 54 public Bitmap getBitmap() {
160 if (getBitmap().hasAlpha()) {
192 Bitmap bitmap = getBitmap();
225 if (scaledBitmap != null && scaledBitmap != getBitmap()) {
CompositeImageRequest.java 73 final Bitmap resourceBitmap = resource.getBitmap();
82 ImageUtils.drawBitmapWithCircleOnCanvas(resource.getBitmap(), smallCircleCanvas,
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
PhotoProcessorTest.java 42 final Bitmap sourceBitmap = ((BitmapDrawable) source).getBitmap();
  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
BitmapUtils.java 63 Bitmap bitmap = getBitmap(resources, resourceId);
75 static Bitmap getBitmap(Resources resources, int resourceId) {
  /external/sonivox/jet_tools/JetCreator/
img_Copy.py 40 def getBitmap():
49 icon.CopyFromBitmap(getBitmap())
img_Find.py 74 def getBitmap():
83 icon.CopyFromBitmap(getBitmap())
  /frameworks/support/compat/src/main/java/androidx/core/graphics/drawable/
RoundedBitmapDrawableFactory.java 85 if (drawable.getBitmap() == null) {
98 if (drawable.getBitmap() == null) {
  /frameworks/base/graphics/java/android/graphics/drawable/
Icon.java 142 public Bitmap getBitmap() {
144 throw new IllegalStateException("called getBitmap() on " + this);
328 return new BitmapDrawable(context.getResources(), getBitmap());
331 new BitmapDrawable(context.getResources(), getBitmap()));
436 getBitmap().isMutable() &&
437 getBitmap().getAllocationByteCount() >= MIN_ASHMEM_ICON_SIZE) {
438 setBitmap(getBitmap().createAshmemBitmap());
457 getBitmap().compress(Bitmap.CompressFormat.PNG, 100, dataStream);
529 return getBitmap() == otherIcon.getBitmap();
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
UploadedTexture.java 134 private Bitmap getBitmap() {
154 if (mWidth == UNSPECIFIED) getBitmap();
160 if (mWidth == UNSPECIFIED) getBitmap();
193 Bitmap bitmap = getBitmap();
212 Bitmap bitmap = getBitmap();
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
UploadedTexture.java 134 private Bitmap getBitmap() {
154 if (mWidth == UNSPECIFIED) getBitmap();
160 if (mWidth == UNSPECIFIED) getBitmap();
193 Bitmap bitmap = getBitmap();
212 Bitmap bitmap = getBitmap();
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowBitmapDrawableTest.java 33 assertThat(drawable.getBitmap()).isEqualTo(bitmap);
36 assertThat(drawable.getBitmap()).isEqualTo(bitmap);
42 assertThat(shadowOf(drawable.getBitmap()).getDescription()).isEqualTo("Bitmap for resource:org.robolectric:drawable/an_image");
  /packages/apps/UnifiedEmail/src/com/android/mail/photomanager/
LetterTileProvider.java 89 final Bitmap bitmap = getBitmap(dimensions, false /* getDefault */);
110 c.drawBitmap(getBitmap(dimensions, true /* getDefault */), 0, 0, null);
122 private Bitmap getBitmap(final Dimensions d, boolean getDefault) {
  /external/volley/src/main/java/com/android/volley/toolbox/
ImageLoader.java 75 Bitmap getBitmap(String url);
109 if (response.getBitmap() != null) {
110 view.setImageBitmap(response.getBitmap());
124 * data was available, response.getBitmap() will be non-null.
169 return mCache.getBitmap(cacheKey) != null;
216 Bitmap cachedBitmap = mCache.getBitmap(cacheKey);
374 public Bitmap getBitmap() {
NetworkImageView.java 177 if (response.getBitmap() != null) {
178 setImageBitmap(response.getBitmap());
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowBitmapDrawable.java 46 canvas.drawBitmap(realBitmapDrawable.getBitmap(), 0, 0, paint);
55 public android.graphics.Bitmap getBitmap() {
ShadowMediaStore.java 20 public static Bitmap getBitmap(ContentResolver cr, Uri url) {
  /external/skia/gm/
giantbitmap.cpp 27 const SkBitmap& getBitmap() {
107 paint.setShader(SkShader::MakeBitmapShader(getBitmap(), fMode, fMode, &m));
  /external/skqp/gm/
giantbitmap.cpp 27 const SkBitmap& getBitmap() {
107 paint.setShader(SkShader::MakeBitmapShader(getBitmap(), fMode, fMode, &m));
  /frameworks/support/media/api21/android/support/v4/media/
MediaMetadataCompatApi21.java 34 public static Bitmap getBitmap(Object metadataObj, String key) {
35 return ((MediaMetadata)metadataObj).getBitmap(key);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
RenderScriptTask.java 138 rgbdImage = options.rgbz.getBitmap();
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/view/
BitmapView.java 49 public Bitmap getBitmap() {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PrintBitmap.java 77 Bitmap bitmap = ((BitmapDrawable) mImageView.getDrawable()).getBitmap();
  /development/samples/ApiDemos/src/com/example/android/apis/view/
StaticPointerIconButton.java 55 mCustomIcon = PointerIcon.create(bitmapDrawable.getBitmap(), hotSpotX, hotSpotY);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
FixedSizeImageView.java 68 (((BitmapDrawable) drawable).getBitmap() == null);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
AssetsAtlasActivity.java 46 mBitmap = ((BitmapDrawable) d).getBitmap();

Completed in 1180 milliseconds

12 3 4 5 6 7 8 91011>>