Home
last modified time | relevance | path

Searched refs:shadowBitmap (Results 1 – 2 of 2) sorted by relevance

/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowBitmap.java41 ShadowBitmap shadowBitmap = shadowOf(scaledBitmap); in createBitmap() local
42 shadowBitmap.appendDescription("Bitmap (" + width + " x " + height + ")"); in createBitmap()
43 shadowBitmap.setWidth(width); in createBitmap()
44 shadowBitmap.setHeight(height); in createBitmap()
45 shadowBitmap.setConfig(config); in createBitmap()
51 ShadowBitmap shadowBitmap = shadowOf(bitmap); in createBitmap() local
52 shadowBitmap.appendDescription(" created from Bitmap object"); in createBitmap()
59 ShadowBitmap shadowBitmap = shadowOf(scaledBitmap); in createScaledBitmap() local
60 shadowBitmap.appendDescription(shadowOf(src).getDescription()); in createScaledBitmap()
61 shadowBitmap.appendDescription(" scaled to " + dstWidth + " x " + dstHeight); in createScaledBitmap()
[all …]
DShadowBitmapFactory.java71 ShadowBitmap shadowBitmap = shadowOf(bitmap); in create() local
72 shadowBitmap.appendDescription("Bitmap for " + name); in create()
76 shadowBitmap.appendDescription(" with options "); in create()
77 shadowBitmap.appendDescription(optionsString); in create()
85 shadowBitmap.setWidth(widthAndHeight.x); in create()
86 shadowBitmap.setHeight(widthAndHeight.y); in create()