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.java48 import static android.view.cts.util.ASurfaceControlTestUtils.setGeometry;
494 setGeometry(surfaceControl, 0, 0, 100, 100, 10, 10, 50, 50, 0); in testSurfaceTransaction_setDestinationRect_small()
516 setGeometry(childSurfaceControl, 0, 0, 100, 100, 10, 10, 50, 50, 0); in testSurfaceTransaction_setDestinationRect_childSmall()
537 setGeometry(surfaceControl, 0, 0, 100, 100, -100, -100, 200, 200, 0); in testSurfaceTransaction_setDestinationRect_extraLarge()
559 setGeometry(childSurfaceControl, 0, 0, 100, 100, -100, -100, 200, 200, 0); in testSurfaceTransaction_setDestinationRect_childExtraLarge()
580 setGeometry(surfaceControl, 0, 0, 100, 100, -30, -20, 50, 50, 0); in testSurfaceTransaction_setDestinationRect_negativeOffset()
601 setGeometry(surfaceControl, 0, 0, 100, 100, 50, 50, 110, 105, 0); in testSurfaceTransaction_setDestinationRect_outOfParentBounds()
625 setGeometry(surfaceControl1, 0, 0, 100, 100, 10, 10, 30, 40, 0); in testSurfaceTransaction_setDestinationRect_twoLayers()
626 setGeometry(surfaceControl2, 0, 0, 100, 100, 70, 20, 90, 50, 0); in testSurfaceTransaction_setDestinationRect_twoLayers()
687 setGeometry(surfaceControl, 10, 10, 90, 90, 0, 0, 100, 100, 0); in testSurfaceTransaction_setSourceRect_smallCentered()
[all …]
DAttachedSurfaceControlSyncTest.java92 t.setGeometry(mSurfaceControl, null, new Rect(mLocation[0], mLocation[1],
/cts/tests/framework/base/windowmanager/src/android/server/wm/
DSurfaceControlTest.java259 .setGeometry(sc, null, new Rect(-50, -50, 50, 50), Surface.ROTATION_0) in testSetGeometry_dstBoundsOffScreen()
291 .setGeometry(sc, null, new Rect(50, 50, 150, 150), Surface.ROTATION_0) in testSetGeometry_dstBoundsOnScreen()
324 … .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.java386 t.setGeometry(leash, null, mPrimaryBounds, Surface.ROTATION_0); in addTask()
396 t.setGeometry(leash, null, mSecondaryBounds, 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()