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

  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/
BitmapTest.java 29 Bitmap bm3 = Bitmap.createBitmap(100, 200, Bitmap.Config.ARGB_4444); local
33 assertTrue("mutability", bm3.isMutable());
37 assertEquals("width", 100, bm3.getWidth());
41 assertEquals("rowbytes", 200, bm3.getRowBytes());
45 assertEquals("byteCount", 40000, bm3.getByteCount());
49 assertEquals("height", 200, bm3.getHeight());
53 assertTrue("hasAlpha", bm3.hasAlpha());
57 assertTrue("getConfig", bm3.getConfig() == Bitmap.Config.ARGB_4444);
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java 381 Bitmap bm3 = Bitmap.createBitmap(100, 200, Bitmap.Config.ARGB_4444); local
386 assertEquals(Bitmap.Config.ARGB_4444, bm3.getConfig());
434 Bitmap bm3 = Bitmap.createBitmap(100, 200, Bitmap.Config.ARGB_4444); local
439 assertEquals(200, bm3.getRowBytes());

Completed in 185 milliseconds