Home
last modified time | relevance | path

Searched refs:setGeometry (Results 1 – 6 of 6) sorted by relevance

/cts/tests/tests/view/src/android/view/cts/
DASurfaceControlTest.java46 import static android.view.cts.util.ASurfaceControlTestUtils.setGeometry;
521 setGeometry(surfaceControl, 0, 0, 100, 100, 10, 10, 50, 50, 0); in testSurfaceTransaction_setDestinationRect_small()
547 setGeometry(childSurfaceControl, 0, 0, 100, 100, 10, 10, 50, 50, 0); in testSurfaceTransaction_setDestinationRect_childSmall()
572 setGeometry(surfaceControl, 0, 0, 100, 100, -100, -100, 200, 200, 0); in testSurfaceTransaction_setDestinationRect_extraLarge()
594 setGeometry(childSurfaceControl, 0, 0, 100, 100, -100, -100, 200, 200, 0); in testSurfaceTransaction_setDestinationRect_childExtraLarge()
615 setGeometry(surfaceControl, 0, 0, 100, 100, -30, -20, 50, 50, 0); in testSurfaceTransaction_setDestinationRect_negativeOffset()
640 setGeometry(surfaceControl, 0, 0, 100, 100, 50, 50, 110, 105, 0); in testSurfaceTransaction_setDestinationRect_outOfParentBounds()
668 setGeometry(surfaceControl1, 0, 0, 100, 100, 10, 10, 30, 40, 0); in testSurfaceTransaction_setDestinationRect_twoLayers()
669 setGeometry(surfaceControl2, 0, 0, 100, 100, 70, 20, 90, 50, 0); in testSurfaceTransaction_setDestinationRect_twoLayers()
730 setGeometry(surfaceControl, 10, 10, 90, 90, 0, 0, 100, 100, 0); in testSurfaceTransaction_setSourceRect_smallCentered()
[all …]
DAttachedSurfaceControlSyncTest.java90 t.setGeometry(mSurfaceControl, null, new Rect(mLocation[0], mLocation[1],
/cts/tests/framework/base/windowmanager/src/android/server/wm/
DSurfaceControlTest.java264 .setGeometry(sc, null, new Rect(-50, -50, 50, 50), Surface.ROTATION_0) in testSetGeometry_dstBoundsOffScreen()
296 .setGeometry(sc, null, new Rect(50, 50, 150, 150), Surface.ROTATION_0) in testSetGeometry_dstBoundsOnScreen()
329 … .setGeometry(sc, new Rect(0, 0, DEFAULT_SURFACE_SIZE / 2, DEFAULT_SURFACE_SIZE / 2), in testSetGeometry_dstBoundsScaled()
/cts/tests/framework/base/windowmanager/util/src/android/server/wm/
DTestTaskOrganizer.java393 t.setGeometry(leash, sourceCrop, sourceCrop, Surface.ROTATION_0); in addTask()
405 t.setGeometry(leash, sourceCrop, mPrimaryBounds, Surface.ROTATION_0); in addTask()
417 t.setGeometry(leash, sourceCrop, mSecondaryBounds, Surface.ROTATION_0); in addTask()
432 t.setGeometry(leash, sourceCrop, bounds, Surface.ROTATION_0); in addTask()
/cts/tests/tests/view/src/android/view/cts/util/
DASurfaceControlTestUtils.java62 public static void setGeometry(long surfaceControl, int srcLeft, int srcTop, int srcRight, in setGeometry() method in ASurfaceControlTestUtils
/cts/tests/tests/graphics/src/android/graphics/cts/
DFrameRateCtsActivity.java205 transaction.setGeometry(mSurfaceControl, null, destFrame, Surface.ROTATION_0) in TestSurface()