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

  /frameworks/base/core/tests/coretests/src/android/graphics/
BitmapTest.java 30 Bitmap bm3 = Bitmap.createBitmap(100, 200, Bitmap.Config.ARGB_4444); local
34 assertTrue("mutability", bm3.isMutable());
38 assertEquals("width", 100, bm3.getWidth());
42 assertEquals("rowbytes", 400, bm3.getRowBytes());
46 assertEquals("byteCount", 80000, bm3.getByteCount());
50 assertEquals("height", 200, bm3.getHeight());
54 assertTrue("hasAlpha", bm3.hasAlpha());
58 assertTrue("getConfig", bm3.getConfig() == Bitmap.Config.ARGB_8888);
  /frameworks/base/core/tests/coretests/src/android/graphics/drawable/
IconTest.java 49 final Bitmap bm3 = ((BitmapDrawable) getContext().getDrawable(R.drawable.landscape)) local
59 final Icon im3 = Icon.createWithBitmap(bm3);
102 bm3.compress(Bitmap.CompressFormat.PNG, 100,
106 if (!equalBitmaps(bm3, test3)) {
107 findBitmapDifferences(bm3, test3);
  /external/skia/tests/
EncodeTest.cpp 332 SkBitmap bm0, bm1, bm2, bm3; local
336 SkImage::MakeFromEncoded(data3)->asLegacyBitmap(&bm3);
339 REPORTER_ASSERT(r, almost_equals(bm2, bm3, 45));
  /external/skqp/tests/
EncodeTest.cpp 331 SkBitmap bm0, bm1, bm2, bm3; local
335 SkImage::MakeFromEncoded(data3)->asLegacyBitmap(&bm3, SkImage::kRO_LegacyBitmapMode);
338 REPORTER_ASSERT(r, almost_equals(bm2, bm3, 45));
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java 551 Bitmap bm3 = Bitmap.createBitmap(100, 200, Bitmap.Config.ARGB_4444); local
557 assertEquals(Bitmap.Config.ARGB_8888, bm3.getConfig());
627 Bitmap bm3 = Bitmap.createBitmap(100, 200, Bitmap.Config.ARGB_4444); local
633 assertEquals(400, bm3.getRowBytes());
    [all...]

Completed in 254 milliseconds