Home
last modified time | relevance | path

Searched refs:bitmapDrawable (Results 1 – 4 of 4) sorted by relevance

/cts/tests/tests/graphics/src/android/graphics/drawable/cts/
DBitmapDrawableTest.java78 BitmapDrawable bitmapDrawable = new BitmapDrawable(); in testConstructor() local
79 assertNotNull(bitmapDrawable.getPaint()); in testConstructor()
81 bitmapDrawable.getPaint().getFlags()); in testConstructor()
82 assertNull(bitmapDrawable.getBitmap()); in testConstructor()
85 bitmapDrawable = new BitmapDrawable(bitmap); in testConstructor()
86 assertNotNull(bitmapDrawable.getPaint()); in testConstructor()
88 bitmapDrawable.getPaint().getFlags()); in testConstructor()
89 assertEquals(bitmap, bitmapDrawable.getBitmap()); in testConstructor()
113 BitmapDrawable bitmapDrawable = new BitmapDrawable(source); in testAccessGravity() local
115 assertEquals(Gravity.FILL, bitmapDrawable.getGravity()); in testAccessGravity()
[all …]
DThemedDrawableTest.java152 BitmapDrawable bitmapDrawable = (BitmapDrawable) d.getDrawable(0); in testLayerDrawable() local
153 internalTestBitmapDrawable(bitmapDrawable); in testLayerDrawable()
DLayerDrawableTest.java52 Drawable bitmapDrawable = new BitmapDrawable(); in testConstructor() local
54 Drawable[] array = new Drawable[] { bitmapDrawable, colorDrawable }; in testConstructor()
57 assertSame(bitmapDrawable, layerDrawable.getDrawable(0)); in testConstructor()
127 Drawable bitmapDrawable = new BitmapDrawable(); in testFindDrawableByLayerId() local
129 Drawable[] array = new Drawable[] { bitmapDrawable, colorDrawable }; in testFindDrawableByLayerId()
134 assertSame(bitmapDrawable, layerDrawable.findDrawableByLayerId(10)); in testFindDrawableByLayerId()
140 assertSame(bitmapDrawable, layerDrawable.findDrawableByLayerId(Integer.MIN_VALUE)); in testFindDrawableByLayerId()
209 Drawable bitmapDrawable = new BitmapDrawable(); in testAccessDrawable() local
211 Drawable[] array = new Drawable[] { bitmapDrawable, colorDrawable }; in testAccessDrawable()
213 assertSame(bitmapDrawable, layerDrawable.getDrawable(0)); in testAccessDrawable()
[all …]
/cts/tests/tests/text/src/android/text/style/cts/
DImageSpanTest.java93 BitmapDrawable bitmapDrawable = (BitmapDrawable) drawable; in testGetDrawable() local
96 WidgetTestUtils.assertEquals(bitmapDrawable.getBitmap(), resultDrawable.getBitmap()); in testGetDrawable()