Home
last modified time | relevance | path

Searched refs:TEST_HEIGHT (Results 1 – 16 of 16) sorted by relevance

/cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
DRectShapeTest.java32 private static final int TEST_HEIGHT = 200; field in RectShapeTest
51 Bitmap bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Config.ARGB_8888); in testDraw()
56 rectShape.resize(TEST_WIDTH, TEST_HEIGHT); in testDraw()
59 assertDrawSuccessfully(bitmap, TEST_WIDTH, TEST_HEIGHT, TEST_COLOR_1); in testDraw()
63 assertDrawSuccessfully(bitmap, TEST_WIDTH, TEST_HEIGHT, TEST_COLOR_2); in testDraw()
86 rectShape.resize(TEST_WIDTH, TEST_HEIGHT); in testRect()
91 assertEquals((float) TEST_HEIGHT, rect.bottom); in testRect()
DArcShapeTest.java31 private static final int TEST_HEIGHT = 200; field in ArcShapeTest
49 Bitmap bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Config.ARGB_8888); in testDraw()
54 arcShape.resize(TEST_WIDTH, TEST_HEIGHT); in testDraw()
58 assertEquals(TEST_COLOR_1, bitmap.getPixel(TEST_WIDTH / 2, TEST_HEIGHT / 2)); in testDraw()
60 final int SQUARE = Math.min(TEST_WIDTH, TEST_HEIGHT); in testDraw()
DOvalShapeTest.java31 private static final int TEST_HEIGHT = 200; field in OvalShapeTest
44 Bitmap bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Config.ARGB_8888); in testDraw()
49 ovalShape.resize(TEST_WIDTH, TEST_HEIGHT); in testDraw()
53 assertEquals(TEST_COLOR_1, bitmap.getPixel(TEST_WIDTH / 2, TEST_HEIGHT / 2)); in testDraw()
55 final int SQUARE = Math.min(TEST_WIDTH, TEST_HEIGHT); in testDraw()
DRoundRectShapeTest.java32 private static final int TEST_HEIGHT = 200; field in RoundRectShapeTest
66 Bitmap bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Config.ARGB_8888); in testDraw()
71 roundRectShape.resize(TEST_WIDTH, TEST_HEIGHT); in testDraw()
DShapeTest.java33 private static final int TEST_HEIGHT = 200; field in ShapeTest
97 Bitmap bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Config.ARGB_8888); in testDraw()
102 shape.resize(TEST_WIDTH, TEST_HEIGHT); in testDraw()
/cts/tests/tests/graphics/src/android/graphics/cts/
DPictureTest.java37 private static final int TEST_HEIGHT = 3; // must >= 2 field in PictureTest
49 Canvas canvas = original.beginRecording(TEST_WIDTH, TEST_HEIGHT); in testSaveRestoreBalance()
71 Bitmap bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Bitmap.Config.ARGB_8888); in testSaveRestoreBalance()
88 Bitmap bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Bitmap.Config.ARGB_8888); in checkBalance()
114 Canvas canvas = picture.beginRecording(TEST_WIDTH, TEST_HEIGHT); in testPicture()
119 Bitmap bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Bitmap.Config.ARGB_8888); in testPicture()
129 bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Bitmap.Config.ARGB_8888); in testPicture()
136 bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Bitmap.Config.ARGB_8888); in testPicture()
145 assertEquals(TEST_HEIGHT, picture.getHeight()); in checkSize()
153 canvas.drawRect(0, 0, TEST_WIDTH, TEST_HEIGHT, paint); in drawPicture()
[all …]
/cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
DActivityTestBase.java50 public static final int TEST_HEIGHT = 90; field in ActivityTestBase
54 private int[] mHardwareArray = new int[TEST_HEIGHT * TEST_WIDTH];
55 private int[] mSoftwareArray = new int[TEST_HEIGHT * TEST_WIDTH];
135 return Bitmap.createBitmap(source, testOffset.x, testOffset.y, TEST_WIDTH, TEST_HEIGHT); in takeScreenshotImpl()
184 givenAllocation, 0, TEST_WIDTH, TEST_WIDTH, TEST_HEIGHT, mRenderScript); in assertBitmapsAreSimilar()
186 bitmap1.getPixels(mSoftwareArray, 0, TEST_WIDTH, 0, 0, TEST_WIDTH, TEST_HEIGHT); in assertBitmapsAreSimilar()
187 bitmap2.getPixels(mHardwareArray, 0, TEST_WIDTH, 0, 0, TEST_WIDTH, TEST_HEIGHT); in assertBitmapsAreSimilar()
189 TEST_HEIGHT); in assertBitmapsAreSimilar()
207 TEST_WIDTH, TEST_HEIGHT); in assertBitmapIsVerified()
208 … boolean success = bitmapVerifier.verify(mSoftwareArray, 0, TEST_WIDTH, TEST_WIDTH, TEST_HEIGHT); in assertBitmapIsVerified()
[all …]
DCanvasClientView.java59 canvas.clipRect(0, 0, ActivityTestBase.TEST_WIDTH, ActivityTestBase.TEST_HEIGHT); in onDraw()
60 mCanvasClient.draw(canvas, ActivityTestBase.TEST_WIDTH, ActivityTestBase.TEST_HEIGHT); in onDraw()
DResourceModifier.java60 int drawHeight = ActivityTestBase.TEST_HEIGHT; in ResourceModifier()
/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapverifiers/
DGoldenImageVerifier.java28 mGoldenBitmapArray = new int[ActivityTestBase.TEST_WIDTH * ActivityTestBase.TEST_HEIGHT]; in GoldenImageVerifier()
30 ActivityTestBase.TEST_WIDTH, ActivityTestBase.TEST_HEIGHT); in GoldenImageVerifier()
DSamplePointVerifier.java61 ActivityTestBase.TEST_HEIGHT, Bitmap.Config.ARGB_8888); in verify()
63 ActivityTestBase.TEST_WIDTH, ActivityTestBase.TEST_HEIGHT); in verify()
DPerPixelBitmapVerifier.java81 ActivityTestBase.TEST_HEIGHT, Bitmap.Config.ARGB_8888); in verify()
83 ActivityTestBase.TEST_WIDTH, ActivityTestBase.TEST_HEIGHT); in verify()
/cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
DSweepTests.java133 int sc = canvas.saveLayer(0, 0, TEST_WIDTH, TEST_HEIGHT, null);
142 Bitmap srcB = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Bitmap.Config.ARGB_8888);
151 Bitmap dstB = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Bitmap.Config.ARGB_8888);
247 Bitmap bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Bitmap.Config.ARGB_8888);
255 canvas.drawRect(i * blockWidth, 0, (i + 1) * blockWidth, TEST_HEIGHT, paint);
277 Bitmap bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Bitmap.Config.ARGB_8888);
289 canvas.drawCircle(TEST_WIDTH / 2, TEST_HEIGHT / 2, TEST_HEIGHT / 2, paint);
DPictureTest.java40 ActivityTestBase.TEST_HEIGHT); in greenSquare()
DExactCanvasTests.java80 ActivityTestBase.TEST_HEIGHT, p); in testBlackRectWithStroke()
/cts/tests/tests/widget/src/android/widget/cts/
DAbsListView_LayoutParamsTest.java45 int TEST_HEIGHT = 25; in testConstructors() local
51 assertEquals(TEST_HEIGHT, layoutParams.height); in testConstructors()