Searched refs:inset1 (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
D | LayerDrawableTest.java | 743 Rect inset1 = new Rect(1, 2, 3, 4); in testSetBounds() local 747 layerDrawable.setLayerInset(0, inset1.left, inset1.top, inset1.right, inset1.bottom); in testSetBounds() 775 assertEquals(bounds.left + inset1.left, mockDrawable1.getBounds().left); in testSetBounds() 776 assertEquals(bounds.top + inset1.top, mockDrawable1.getBounds().top); in testSetBounds() 777 assertEquals(bounds.right - inset1.right, mockDrawable1.getBounds().right); in testSetBounds() 778 assertEquals(bounds.bottom - inset1.bottom, mockDrawable1.getBounds().bottom); in testSetBounds() 800 Rect inset1 = new Rect(1, 2, 3, 4); in testGetIntrinsicWidth() local 804 layerDrawable.setLayerInset(0, inset1.left, inset1.top, inset1.right, inset1.bottom); in testGetIntrinsicWidth() 823 inset1 = new Rect(inset2.left + padding1.left + 1, inset2.top + padding1.top + 1, in testGetIntrinsicWidth() 825 layerDrawable.setLayerInset(0, inset1.left, inset1.top, inset1.right, inset1.bottom); in testGetIntrinsicWidth() [all …]
|