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/lifecycle/
DActivityLifecycleFreeformTests.java69 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in testLaunchInFreeform() local
70 launchOptions.setLaunchWindowingMode(WINDOWING_MODE_FREEFORM); in testLaunchInFreeform()
73 .setOptions(launchOptions) in testLaunchInFreeform()
89 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in testMultiLaunchInFreeform() local
90 launchOptions.setLaunchWindowingMode(WINDOWING_MODE_FREEFORM); in testMultiLaunchInFreeform()
95 .setOptions(launchOptions) in testMultiLaunchInFreeform()
100 .setOptions(launchOptions) in testMultiLaunchInFreeform()
105 .setOptions(launchOptions) in testMultiLaunchInFreeform()
127 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in testLaunchOccludingInFreeform() local
128 launchOptions.setLaunchWindowingMode(WINDOWING_MODE_FREEFORM); in testLaunchOccludingInFreeform()
[all …]
DActivityLifecycleTopResumedStateTests.java748 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in testTopPositionSwitchAcrossDisplays() local
749 launchOptions.setLaunchDisplayId(DEFAULT_DISPLAY); in testTopPositionSwitchAcrossDisplays()
752 .setOptions(launchOptions) in testTopPositionSwitchAcrossDisplays()
767 launchOptions.setLaunchDisplayId(newDisplay.mId); in testTopPositionSwitchAcrossDisplays()
770 .setOptions(launchOptions) in testTopPositionSwitchAcrossDisplays()
800 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in testTopPositionSwitchAcrossDisplaysOnTap() local
801 launchOptions.setLaunchDisplayId(DEFAULT_DISPLAY); in testTopPositionSwitchAcrossDisplaysOnTap()
804 .setOptions(launchOptions) in testTopPositionSwitchAcrossDisplaysOnTap()
817 launchOptions.setLaunchDisplayId(newDisplay.mId); in testTopPositionSwitchAcrossDisplaysOnTap()
820 .setOptions(launchOptions) in testTopPositionSwitchAcrossDisplaysOnTap()
[all …]
DActivityLifecycleClientTestBase.java802 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in getLaunchOptionsForFullscreen() local
803 launchOptions.setLaunchWindowingMode(WINDOWING_MODE_FULLSCREEN); in getLaunchOptionsForFullscreen()
804 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/
DMultiDisplayClientTests.java109 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in testDisplayIdUpdateOnMove() local
111 launchOptions.setLaunchDisplayId(displayId); in testDisplayIdUpdateOnMove()
115 launchOptions.toBundle()); in testDisplayIdUpdateOnMove()
180 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in assertImeShownAndMatchesDisplayId() local
181 launchOptions.setLaunchDisplayId(targetDisplayId); in assertImeShownAndMatchesDisplayId()
182 getInstrumentation().getTargetContext().startActivity(intent, launchOptions.toBundle()); in assertImeShownAndMatchesDisplayId()
/cts/tests/framework/base/windowmanager/util/src/android/server/wm/
DActivityManagerTestBase.java517 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in launchActivityOnDisplay() local
518 launchOptions.setLaunchDisplayId(displayId); in launchActivityOnDisplay()
519 launchOptions.setLaunchWindowingMode(windowingMode); in launchActivityOnDisplay()
520 final Bundle bundle = launchOptions.toBundle(); in launchActivityOnDisplay()