HomeSort by relevance Sort by last modified time
    Searched defs:bitmap2 (Results 1 - 7 of 7) sorted by null

  /cts/tests/tests/uirendering/src/android/uirendering/cts/util/
BitmapAsserter.java 49 public void assertBitmapsAreSimilar(Bitmap bitmap1, Bitmap bitmap2, BitmapComparer comparer,
55 if (width != bitmap2.getWidth() || height != bitmap2.getHeight()) {
62 bitmap2.getPixels(pixels2, 0, width, 0, 0, width, height);
66 BitmapDumper.dumpBitmaps(bitmap1, bitmap2, testName, mClassName, mDifferenceVisualizer);
  /cts/tests/tests/uirendering27/src/android/uirendering/cts/util/
BitmapAsserter.java 49 public void assertBitmapsAreSimilar(Bitmap bitmap1, Bitmap bitmap2, BitmapComparer comparer,
55 if (width != bitmap2.getWidth() || height != bitmap2.getHeight()) {
62 bitmap2.getPixels(pixels2, 0, width, 0, 0, width, height);
66 BitmapDumper.dumpBitmaps(bitmap1, bitmap2, testName, mClassName, mDifferenceVisualizer);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowMediaMetadataRetrieverTest.java 32 private final Bitmap bitmap2 = Bitmap.createBitmap(11, 11, Bitmap.Config.ARGB_8888); field in class:ShadowMediaMetadataRetrieverTest
50 addFrame(path2, 1, bitmap2);
54 assertThat(retriever.getFrameAtTime(1)).isNotEqualTo(bitmap2);
55 assertThat(retriever2.getFrameAtTime(1)).isEqualTo(bitmap2);
62 addFrame(fd, 0, 0, 1, bitmap2);
64 assertThat(retriever.getFrameAtTime(1)).isEqualTo(bitmap2);
70 addFrame(fd, 1, 0, 1, bitmap2);
74 assertThat(retriever.getFrameAtTime(1)).isNotEqualTo(bitmap2);
75 assertThat(retriever2.getFrameAtTime(1)).isEqualTo(bitmap2);
84 addFrame(context, uri, 13, bitmap2);
101 addFrame(uri.toString(), headers, 13, bitmap2); local
    [all...]
ShadowBitmapTest.java 153 Bitmap bitmap2 = create("Bitmap Two"); local
156 canvas.drawBitmap(bitmap2, 0, 0, null);
164 Bitmap bitmap2 = create("Bitmap Two"); local
167 canvas.drawBitmap(bitmap2, new Matrix(), null);
176 Bitmap bitmap2 = create("Bitmap Two"); local
181 canvas.drawBitmap(bitmap2, new Matrix(), paint);
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java 1688 Bitmap bitmap2 = Bitmap.createBitmap(100, 100, Config.ARGB_8888); local
1698 Bitmap bitmap2 = Bitmap.createBitmap(100, 100, Config.ARGB_8888); local
1709 Bitmap bitmap2 = Bitmap.createBitmap(150, 150, Config.ARGB_8888); local
1720 Bitmap bitmap2 = Bitmap.createBitmap(100, 200, Config.ARGB_8888); local
1734 Bitmap bitmap2 = Bitmap.createBitmap(101, 100, Config.ARGB_8888); local
1744 Bitmap bitmap2 = Bitmap.createBitmap(102, 100, Config.ARGB_8888); local
1754 Bitmap bitmap2 = Bitmap.createBitmap(100, 100, Config.ARGB_8888); local
1766 Bitmap bitmap2 = BitmapFactory.decodeResource(mRes, R.drawable.robot, HARDWARE_OPTIONS); local
1785 Bitmap bitmap2 = Bitmap.wrapHardwareBuffer(hwBufferA, ColorSpace.get(Named.SRGB)); local
1816 Bitmap bitmap2 = Bitmap.createBitmap(100, 100, Config.ARGB_8888); local
    [all...]
BitmapColorSpaceTest.java 366 Bitmap bitmap2 = BitmapFactory.decodeStream(in, null, opts); local
367 assertSame(bitmap1, bitmap2);
368 ColorSpace cs = bitmap2.getColorSpace();
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewTest.java 1580 Bitmap bitmap2 = view.getDrawingCache(); local
    [all...]

Completed in 214 milliseconds