HomeSort by relevance Sort by last modified time
    Searched refs:ShadowBitmap (Results 1 - 11 of 11) sorted by null

  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowBitmap.java 28 public class ShadowBitmap {
68 ShadowBitmap shadowBitmap = Shadow.extract(bitmap);
69 return shadowBitmap.getDescription();
214 ShadowBitmap shadowBitmap = Shadow.extract(scaledBitmap);
215 shadowBitmap.setDescription("Bitmap (" + width + " x " + height + ")");
217 shadowBitmap.width = width;
218 shadowBitmap.height = height;
219 shadowBitmap.config = config
    [all...]
ShadowBitmapFactory.java 67 ShadowBitmap shadowBitmap = Shadow.extract(bitmap);
68 shadowBitmap.createdFromResId = id;
80 ShadowBitmap shadowBitmap = Shadow.extract(bitmap);
81 shadowBitmap.createdFromPath = pathName;
90 ShadowBitmap shadowBitmap = Shadow.extract(bitmap);
91 shadowBitmap.createdFromFileDescriptor = fd;
129 ShadowBitmap shadowBitmap = Shadow.extract(bitmap)
    [all...]
ShadowThreadedRenderer.java 23 ShadowBitmap shadowBitmap = Shadow.extract(bitmap);
24 shadowBitmap.setMutable(false);
ShadowBitmapDrawable.java 60 * @deprecated use ShadowBitmap#getCreatedFromResId() instead.
65 ShadowBitmap shadowBitmap = Shadow.extract(realBitmapDrawable.getBitmap());
66 return shadowBitmap.getCreatedFromResId();
ShadowCanvas.java 62 ShadowBitmap shadowBitmap = Shadow.extract(targetBitmap);
63 shadowBitmap.appendDescription(s);
67 ShadowBitmap shadowBitmap = Shadow.extract(targetBitmap);
68 return shadowBitmap.getDescription();
226 ShadowBitmap shadowBitmap = Shadow.extract(bitmap);
227 appendDescription(shadowBitmap.getDescription());
304 ShadowBitmap shadowBitmap = Shadow.extract(targetBitmap)
    [all...]
ShadowResources.java 323 if (bitmap != null && Shadow.extract(bitmap) instanceof ShadowBitmap) {
324 ShadowBitmap shadowBitmap = Shadow.extract(bitmap);
325 if (shadowBitmap.createdFromResId == -1) {
332 shadowBitmap.setCreatedFromResId(id, resourceName);
ShadowDrawable.java 99 ShadowBitmap shadowBitmap = Shadow.extract(bitmap);
100 shadowBitmap.createdFromResId = resourceId;
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowBitmapFactoryTest.java 38 ShadowBitmap shadowBitmap = shadowOf(bitmap);
39 assertEquals("Bitmap for resource:org.robolectric:drawable/an_image", shadowBitmap.getDescription());
40 assertEquals(R.drawable.an_image, shadowBitmap.getCreatedFromResId());
69 ShadowBitmap shadowBitmap = shadowOf(bitmap);
70 assertEquals("Bitmap for file:/some/file.jpg", shadowBitmap.getDescription());
71 assertEquals("/some/file.jpg", shadowBitmap.getCreatedFromPath());
81 ShadowBitmap shadowBitmap = shadowOf(bitmap)
    [all...]
ShadowBitmapTest.java 111 ShadowBitmap shadowBitmap = shadowOf(newBitmap);
112 assertThat(shadowBitmap.getDescription())
115 assertThat(shadowBitmap.getCreatedFromBitmap()).isEqualTo(originalBitmap);
116 assertThat(shadowBitmap.getCreatedFromX()).isEqualTo(0);
117 assertThat(shadowBitmap.getCreatedFromY()).isEqualTo(0);
118 assertThat(shadowBitmap.getCreatedFromWidth()).isEqualTo(100);
119 assertThat(shadowBitmap.getCreatedFromHeight()).isEqualTo(50);
120 assertThat(shadowBitmap.getCreatedFromMatrix()).isEqualTo(m);
121 assertThat(shadowBitmap.getCreatedFromFilter()).isEqualTo(true)
    [all...]
  /external/ImageMagick/MagickCore/
animate.c 199 ShadowBitmap[8] =
    [all...]
display.c 122 ShadowBitmap[8] =
    [all...]

Completed in 1138 milliseconds