Searched refs:getBitmap (Results 1 - 25 of 48) sorted by relevance

12

/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DBitmapDrawableResource.java28 return Util.getBitmapByteSize(drawable.getBitmap());
33 bitmapPool.put(drawable.getBitmap());
H A DGlideBitmapDrawableResource.java20 return Util.getBitmapByteSize(drawable.getBitmap());
25 bitmapPool.put(drawable.getBitmap());
H A DGlideBitmapDrawable.java135 public Bitmap getBitmap() { method in class:GlideBitmapDrawable
/external/volley/src/test/java/com/android/volley/toolbox/
H A DImageLoaderTest.java47 when(mImageCache.getBitmap(anyString())).thenReturn(null);
55 when(mImageCache.getBitmap(anyString())).thenReturn(bitmap);
57 Assert.assertSame(bitmap, ic.getBitmap());
63 when(mImageCache.getBitmap(anyString())).thenReturn(null);
/external/volley/src/main/java/com/android/volley/toolbox/
H A DImageLoader.java75 public Bitmap getBitmap(String url); method in interface:ImageLoader.ImageCache
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() { method in class:ImageLoader.ImageContainer
H A DNetworkImageView.java175 if (response.getBitmap() != null) {
176 setImageBitmap(response.getBitmap());
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowBitmapDrawable.java46 canvas.drawBitmap(realBitmapDrawable.getBitmap(), 0, 0, paint);
55 public android.graphics.Bitmap getBitmap() { method in class:ShadowBitmapDrawable
H A DShadowMediaStore.java20 public static Bitmap getBitmap(ContentResolver cr, Uri url) { method in class:ShadowMediaStore.ShadowImages.ShadowMedia
/external/skia/gm/
H A Dgiantbitmap.cpp27 const SkBitmap& getBitmap() { function in class:GiantBitmapGM
107 paint.setShader(SkShader::MakeBitmapShader(getBitmap(), fMode, fMode, &m));
/external/skia/experimental/iOSSampleApp/Shared/
H A DSkUIView.mm53 SkCanvas canvas(fWind->getBitmap());
55 CGImageRef cgimage = SkCreateCGImageRef(fWind->getBitmap());
/external/sonivox/jet_tools/JetCreator/
H A Dimg_Paste.py30 def getBitmap(): function
39 icon.CopyFromBitmap(getBitmap())
H A Dimg_Copy.py40 def getBitmap(): function
49 icon.CopyFromBitmap(getBitmap())
H A Dimg_New.py50 def getBitmap(): function
59 icon.CopyFromBitmap(getBitmap())
H A Dimg_Print.py51 def getBitmap(): function
60 icon.CopyFromBitmap(getBitmap())
H A Dimg_favicon.py50 def getBitmap(): function
59 icon.CopyFromBitmap(getBitmap())
H A Dimg_Open.py68 def getBitmap(): function
77 icon.CopyFromBitmap(getBitmap())
H A Dimg_Redo.py68 def getBitmap(): function
77 icon.CopyFromBitmap(getBitmap())
H A Dimg_Undo.py70 def getBitmap(): function
79 icon.CopyFromBitmap(getBitmap())
H A Dimg_Cut.py93 def getBitmap(): function
102 icon.CopyFromBitmap(getBitmap())
/external/skia/include/views/
H A DSkWindow.h51 const SkBitmap& getBitmap() const { return fBitmap; } function in class:SkWindow
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
H A DTerminalView.java140 if (bridge.getBitmap() != null) {
145 canvas.drawBitmap(bridge.getBitmap(), 0, 0, paint);
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DBitmapDrawableTest.java36 assertEquals("Bitmap for resource:drawable/an_image", shadowOf(drawable.getBitmap()).getDescription());
H A DBitmapFactoryTest.java111 Bitmap bitmap = MediaStore.Images.Media.getBitmap(Robolectric.application.getContentResolver(), Uri.parse("content:/path"));
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/
H A DPlot.java204 public Bitmap getBitmap() { method in class:Plot.BufferedCanvas
617 Bitmap bmp = pingPong.getBitmap();
/external/skia/experimental/SimpleCocoaApp/
H A DSimpleApp.mm307 SkCGDrawBitmap(ctx, fWind->getBitmap(), 0, 0);

Completed in 1075 milliseconds

12