Home
last modified time | relevance | path

Searched refs:goldenBitmap (Results 1 – 5 of 5) sorted by relevance

/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapverifiers/
DGoldenImageVerifier.java30 public GoldenImageVerifier(Bitmap goldenBitmap, BitmapComparer bitmapComparer) { in GoldenImageVerifier() argument
31 mWidth = goldenBitmap.getWidth(); in GoldenImageVerifier()
32 mHeight = goldenBitmap.getHeight(); in GoldenImageVerifier()
34 goldenBitmap.getPixels(mGoldenBitmapArray, 0, mWidth, 0, 0, mWidth, mHeight); in GoldenImageVerifier()
/cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
DAutofillHighlightTests.java41 Bitmap goldenBitmap = Bitmap.createBitmap(ActivityTestBase.TEST_WIDTH, in testHighlightedFrameLayout() local
43 goldenBitmap.eraseColor(Color.WHITE); in testHighlightedFrameLayout()
44 Canvas canvas = new Canvas(goldenBitmap); in testHighlightedFrameLayout()
61 .runWithVerifier(new GoldenImageVerifier(goldenBitmap, new MSSIMComparer(0.99))); in testHighlightedFrameLayout()
DFontRenderingTests.java49 Bitmap goldenBitmap = BitmapFactory.decodeResource(getActivity().getResources(), id); in fontTestBody() local
68 .runWithVerifier(new GoldenImageVerifier(goldenBitmap, comparer)); in fontTestBody()
/cts/tests/tests/view/src/android/view/cts/util/
DDrawingUtils.java53 final Bitmap goldenBitmap = Bitmap.createBitmap(viewWidth, viewHeight, in assertAllPixelsOfColor() local
56 final Canvas goldenCanvas = new Canvas(goldenBitmap); in assertAllPixelsOfColor()
75 goldenBitmap.getPixels(rowGoldenPixels, 0, viewWidth, 0, row, viewWidth, 1); in assertAllPixelsOfColor()
97 goldenBitmap.recycle(); in assertAllPixelsOfColor()
/cts/tests/tests/mediastress/src/android/mediastress/cts/
DCodecTest.java520 Bitmap goldenBitmap = mBitmapFactory.decodeFile(goldenPath); in getThumbnail() local
523 goldenHeight = goldenBitmap.getHeight(); in getThumbnail()
524 goldenWidth = goldenBitmap.getWidth(); in getThumbnail()
533 if (goldenBitmap.getPixel(x, j) != outThumbnail.getPixel(x, j)) { in getThumbnail()
534 Log.v(TAG, "pixel = " + goldenBitmap.getPixel(x, j)); in getThumbnail()