Home
last modified time | relevance | path

Searched refs:launchOptions (Results 1 – 7 of 7) sorted by relevance

/cts/tests/framework/base/windowmanager/src/android/server/wm/activity/lifecycle/
DActivityLifecycleFreeformTests.java78 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in testLaunchInFreeform() local
79 launchOptions.setLaunchWindowingMode(WINDOWING_MODE_FREEFORM); in testLaunchInFreeform()
82 .setOptions(launchOptions) in testLaunchInFreeform()
97 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in testMultiLaunchInFreeform() local
98 launchOptions.setLaunchWindowingMode(WINDOWING_MODE_FREEFORM); in testMultiLaunchInFreeform()
103 .setOptions(launchOptions) in testMultiLaunchInFreeform()
108 .setOptions(launchOptions) in testMultiLaunchInFreeform()
113 .setOptions(launchOptions) in testMultiLaunchInFreeform()
134 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in testLaunchOccludingInFreeform() local
135 launchOptions.setLaunchWindowingMode(WINDOWING_MODE_FREEFORM); in testLaunchOccludingInFreeform()
[all …]
DActivityLifecycleTopResumedStateTests.java791 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in testTopPositionSwitchAcrossDisplays() local
792 launchOptions.setLaunchDisplayId(DEFAULT_DISPLAY); in testTopPositionSwitchAcrossDisplays()
795 .setOptions(launchOptions) in testTopPositionSwitchAcrossDisplays()
810 launchOptions.setLaunchDisplayId(newDisplay.mId); in testTopPositionSwitchAcrossDisplays()
813 .setOptions(launchOptions) in testTopPositionSwitchAcrossDisplays()
842 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in testTopPositionSwitchAcrossDisplaysOnTap() local
843 launchOptions.setLaunchDisplayId(DEFAULT_DISPLAY); in testTopPositionSwitchAcrossDisplaysOnTap()
846 .setOptions(launchOptions) in testTopPositionSwitchAcrossDisplaysOnTap()
859 launchOptions.setLaunchDisplayId(newDisplay.mId); in testTopPositionSwitchAcrossDisplaysOnTap()
862 .setOptions(launchOptions) in testTopPositionSwitchAcrossDisplaysOnTap()
[all …]
DActivityLifecycleClientTestBase.java677 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in getLaunchOptionsForFullscreen() local
678 launchOptions.setLaunchWindowingMode(WINDOWING_MODE_FULLSCREEN); in getLaunchOptionsForFullscreen()
679 return launchOptions; in getLaunchOptionsForFullscreen()
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/f32/
DRefocusFilterF32.java175 Script.LaunchOptions launchOptions = new Script.LaunchOptions(); in filterLayerBehindFocalDepth() local
176 launchOptions.setX(0, 1); in filterLayerBehindFocalDepth()
177 launchOptions.setY(0, buffers.inputImage.getHeight()); in filterLayerBehindFocalDepth()
181 buffers.inAllocation, launchOptions); in filterLayerBehindFocalDepth()
235 Script.LaunchOptions launchOptions = new Script.LaunchOptions(); in filterLayerInFrontOfFocalDepth() local
236 launchOptions.setX(0, 1); in filterLayerInFrontOfFocalDepth()
237 launchOptions.setY(0, buffers.inputImage.getHeight()); in filterLayerInFrontOfFocalDepth()
241 buffers.inAllocation, launchOptions); in filterLayerInFrontOfFocalDepth()
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/d1new/
DRefocusFilterd1new.java187 Script.LaunchOptions launchOptions = new Script.LaunchOptions(); in filterLayerBehindFocalDepth() local
188 launchOptions.setX(0, 1); in filterLayerBehindFocalDepth()
189 launchOptions.setY(0, buffers.inputImage.getHeight()); in filterLayerBehindFocalDepth()
193 buffers.inAllocation, launchOptions); in filterLayerBehindFocalDepth()
257 Script.LaunchOptions launchOptions = new Script.LaunchOptions(); in filterLayerInFrontOfFocalDepth() local
258 launchOptions.setX(0, 1); in filterLayerInFrontOfFocalDepth()
259 launchOptions.setY(0, buffers.inputImage.getHeight()); in filterLayerInFrontOfFocalDepth()
263 buffers.inAllocation, launchOptions); in filterLayerInFrontOfFocalDepth()
/cts/tests/framework/base/windowmanager/src/android/server/wm/multidisplay/
DMultiDisplayClientTests.java112 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in testDisplayIdUpdateOnMove() local
114 launchOptions.setLaunchDisplayId(displayId); in testDisplayIdUpdateOnMove()
118 launchOptions.toBundle()); in testDisplayIdUpdateOnMove()
183 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in assertImeShownAndMatchesDisplayId() local
184 launchOptions.setLaunchDisplayId(targetDisplayId); in assertImeShownAndMatchesDisplayId()
185 getInstrumentation().getTargetContext().startActivity(intent, launchOptions.toBundle()); in assertImeShownAndMatchesDisplayId()
/cts/tests/framework/base/windowmanager/util/src/android/server/wm/
DActivityManagerTestBase.java638 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in launchActivityOnDisplay() local
639 launchOptions.setLaunchDisplayId(displayId); in launchActivityOnDisplay()
640 launchOptions.setLaunchWindowingMode(windowingMode); in launchActivityOnDisplay()
641 final Bundle bundle = launchOptions.toBundle(); in launchActivityOnDisplay()