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()
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()
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()
601 launchActivity(NO_RELAUNCH_ACTIVITY, WINDOWING_MODE_FULLSCREEN_OR_SPLIT_SCREEN_SECONDARY); in testActivityLifeCycleOnResizeDockedStack()
603 mAmWmState.computeState(TEST_ACTIVITY, NO_RELAUNCH_ACTIVITY); in testActivityLifeCycleOnResizeDockedStack()
612 mAmWmState.computeState(TEST_ACTIVITY, NO_RELAUNCH_ACTIVITY); in testActivityLifeCycleOnResizeDockedStack()
619 mAmWmState.computeState(TEST_ACTIVITY, NO_RELAUNCH_ACTIVITY); in testActivityLifeCycleOnResizeDockedStack()
621 assertActivityLifecycle(NO_RELAUNCH_ACTIVITY, false /* relaunched */); in testActivityLifeCycleOnResizeDockedStack()
DConfigChangeTests.java26 import static android.server.wm.app.Components.NO_RELAUNCH_ACTIVITY;
98 testRotation(NO_RELAUNCH_ACTIVITY, 1, 0, 1); in testRotation90NoRelaunch()
118 testRotation(NO_RELAUNCH_ACTIVITY, 2, 0, 0); in testRotation180_NoRelaunchActivity()
136 testRotation180WithCutout(NO_RELAUNCH_ACTIVITY, TEST_MODE_CONFIGURATION_CHANGE); in testRotation180NoRelaunchWithCutout()
DPinnedStackTests.java35 import static android.server.wm.app.Components.NO_RELAUNCH_ACTIVITY;
1160 launchActivity(NO_RELAUNCH_ACTIVITY); in testEnterPictureInPictureSavePosition()
1208 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