Home
last modified time | relevance | path

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

/cts/tests/framework/base/windowmanager/src/android/server/wm/
DFreeformWindowingModeTests.java23 import static android.server.wm.app.Components.NO_RELAUNCH_ACTIVITY;
110 launchActivity(NO_RELAUNCH_ACTIVITY, WINDOWING_MODE_FREEFORM); in testActivityLifeCycleOnResizeFreeformTask()
112 mAmWmState.computeState(TEST_ACTIVITY, NO_RELAUNCH_ACTIVITY); in testActivityLifeCycleOnResizeFreeformTask()
132 resizeActivityTask(NO_RELAUNCH_ACTIVITY, in testActivityLifeCycleOnResizeFreeformTask()
137 new WaitForValidActivityState.Builder(NO_RELAUNCH_ACTIVITY).build()); in testActivityLifeCycleOnResizeFreeformTask()
143 resizeActivityTask(NO_RELAUNCH_ACTIVITY, in testActivityLifeCycleOnResizeFreeformTask()
146 mAmWmState.computeState(TEST_ACTIVITY, NO_RELAUNCH_ACTIVITY); in testActivityLifeCycleOnResizeFreeformTask()
149 assertActivityLifecycle(NO_RELAUNCH_ACTIVITY, false /* relaunched */); in testActivityLifeCycleOnResizeFreeformTask()
DSplitScreenTests.java34 import static android.server.wm.app.Components.NO_RELAUNCH_ACTIVITY;
203 launchActivity(NO_RELAUNCH_ACTIVITY, WINDOWING_MODE_FULLSCREEN_OR_SPLIT_SCREEN_SECONDARY); in testLaunchToSideAndBringToFront()
209 NO_RELAUNCH_ACTIVITY); in testLaunchToSideAndBringToFront()
605 launchActivity(NO_RELAUNCH_ACTIVITY, WINDOWING_MODE_FULLSCREEN_OR_SPLIT_SCREEN_SECONDARY); in testActivityLifeCycleOnResizeDockedStack()
607 mAmWmState.computeState(TEST_ACTIVITY, NO_RELAUNCH_ACTIVITY); in testActivityLifeCycleOnResizeDockedStack()
616 mAmWmState.computeState(TEST_ACTIVITY, NO_RELAUNCH_ACTIVITY); in testActivityLifeCycleOnResizeDockedStack()
623 mAmWmState.computeState(TEST_ACTIVITY, NO_RELAUNCH_ACTIVITY); in testActivityLifeCycleOnResizeDockedStack()
625 assertActivityLifecycle(NO_RELAUNCH_ACTIVITY, false /* relaunched */); in testActivityLifeCycleOnResizeDockedStack()
DReplaceWindowTests.java22 import static android.server.wm.app.Components.NO_RELAUNCH_ACTIVITY;
64 final ComponentName activityName = relaunch ? SLOW_CREATE_ACTIVITY : NO_RELAUNCH_ACTIVITY; in testReplaceWindow_Dock()
DConfigChangeTests.java26 import static android.server.wm.app.Components.NO_RELAUNCH_ACTIVITY;
79 testRotation(NO_RELAUNCH_ACTIVITY, 1, 0, 1); in testRotation90NoRelaunch()
99 testRotation(NO_RELAUNCH_ACTIVITY, 2, 0, 0); in testRotation180_NoRelaunchActivity()
119 testRotation180WithCutout(NO_RELAUNCH_ACTIVITY, true /* canHandleConfigChange */); in testRotation180NoRelaunchWithCutout()
DPinnedStackTests.java36 import static android.server.wm.app.Components.NO_RELAUNCH_ACTIVITY;
1190 launchActivity(NO_RELAUNCH_ACTIVITY); in testEnterPictureInPictureSavePosition()
1238 launchActivity(NO_RELAUNCH_ACTIVITY); in testEnterPictureInPictureDiscardSavedPositionOnFinish()
/cts/tests/framework/base/windowmanager/app/src/android/server/wm/app/
DComponents.java74 public static final ComponentName NO_RELAUNCH_ACTIVITY = component("NoRelaunchActivity"); field in Components