Home
last modified time | relevance | path

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

/cts/tests/framework/base/activitymanager/src/android/server/am/
DActivityManagerFreeformStackTests.java23 import static android.server.am.Components.NO_RELAUNCH_ACTIVITY;
98 launchActivity(NO_RELAUNCH_ACTIVITY, WINDOWING_MODE_FREEFORM); in testActivityLifeCycleOnResizeFreeformTask()
100 mAmWmState.computeState(TEST_ACTIVITY, NO_RELAUNCH_ACTIVITY); in testActivityLifeCycleOnResizeFreeformTask()
119 resizeActivityTask(NO_RELAUNCH_ACTIVITY, in testActivityLifeCycleOnResizeFreeformTask()
123 new WaitForValidActivityState.Builder(NO_RELAUNCH_ACTIVITY).build()); in testActivityLifeCycleOnResizeFreeformTask()
128 resizeActivityTask(NO_RELAUNCH_ACTIVITY, in testActivityLifeCycleOnResizeFreeformTask()
130 mAmWmState.computeState(TEST_ACTIVITY, NO_RELAUNCH_ACTIVITY); in testActivityLifeCycleOnResizeFreeformTask()
133 assertActivityLifecycle(NO_RELAUNCH_ACTIVITY, false /* relaunched */, logSeparator); in testActivityLifeCycleOnResizeFreeformTask()
DActivityManagerReplaceWindowTests.java21 import static android.server.am.Components.NO_RELAUNCH_ACTIVITY;
62 final ComponentName activityName = relaunch ? SLOW_CREATE_ACTIVITY : NO_RELAUNCH_ACTIVITY; in testReplaceWindow_Dock()
DActivityManagerSplitScreenTests.java33 import static android.server.am.Components.NO_RELAUNCH_ACTIVITY;
202 launchActivity(NO_RELAUNCH_ACTIVITY, WINDOWING_MODE_FULLSCREEN_OR_SPLIT_SCREEN_SECONDARY); in testLaunchToSideAndBringToFront()
208 NO_RELAUNCH_ACTIVITY); in testLaunchToSideAndBringToFront()
579 launchActivity(NO_RELAUNCH_ACTIVITY, WINDOWING_MODE_FULLSCREEN_OR_SPLIT_SCREEN_SECONDARY); in testActivityLifeCycleOnResizeDockedStack()
581 mAmWmState.computeState(TEST_ACTIVITY, NO_RELAUNCH_ACTIVITY); in testActivityLifeCycleOnResizeDockedStack()
590 mAmWmState.computeState(TEST_ACTIVITY, NO_RELAUNCH_ACTIVITY); in testActivityLifeCycleOnResizeDockedStack()
597 mAmWmState.computeState(TEST_ACTIVITY, NO_RELAUNCH_ACTIVITY); in testActivityLifeCycleOnResizeDockedStack()
599 assertActivityLifecycle(NO_RELAUNCH_ACTIVITY, false /* relaunched */, logSeparator); in testActivityLifeCycleOnResizeDockedStack()
DActivityManagerConfigChangeTests.java23 import static android.server.am.Components.NO_RELAUNCH_ACTIVITY;
59 testRotation(NO_RELAUNCH_ACTIVITY, 1, 0, 1); in testRotation90NoRelaunch()
71 testRotation(NO_RELAUNCH_ACTIVITY, 2, 0, 0); in testRotation180NoRelaunch()
DActivityManagerPinnedStackTests.java35 import static android.server.am.Components.NO_RELAUNCH_ACTIVITY;
1234 launchActivity(NO_RELAUNCH_ACTIVITY); in testEnterPictureInPictureSavePosition()
1285 launchActivity(NO_RELAUNCH_ACTIVITY); in testEnterPictureInPictureDiscardSavedPositionOnFinish()
/cts/tests/framework/base/activitymanager/app/src/android/server/am/
DComponents.java69 public static final ComponentName NO_RELAUNCH_ACTIVITY = component("NoRelaunchActivity"); field in Components