Home
last modified time | relevance | path

Searched refs:ALT_LAUNCHING_ACTIVITY (Results 1 – 4 of 4) sorted by relevance

/cts/tests/framework/base/windowmanager/src/android/server/wm/display/
DVrDisplayTests.java21 import static android.server.wm.app.Components.ALT_LAUNCHING_ACTIVITY;
231 launchActivity(ALT_LAUNCHING_ACTIVITY); in testActivityLaunchPostVr()
232 mWmState.computeState(ALT_LAUNCHING_ACTIVITY); in testActivityLaunchPostVr()
235 mWmState.assertVisibility(ALT_LAUNCHING_ACTIVITY, true /* visible */); in testActivityLaunchPostVr()
239 ALT_LAUNCHING_ACTIVITY); in testActivityLaunchPostVr()
243 getActivityName(ALT_LAUNCHING_ACTIVITY), in testActivityLaunchPostVr()
/cts/tests/framework/base/windowmanager/src/android/server/wm/activity/
DActivityVisibilityTests.java31 import static android.server.wm.app.Components.ALT_LAUNCHING_ACTIVITY;
493 getLaunchActivityBuilder().setTargetActivity(ALT_LAUNCHING_ACTIVITY) in testReorderToFrontBackstack()
499 .setLaunchingActivity(ALT_LAUNCHING_ACTIVITY) in testReorderToFrontBackstack()
506 mWmState.waitForValidState(ALT_LAUNCHING_ACTIVITY); in testReorderToFrontBackstack()
510 ALT_LAUNCHING_ACTIVITY); in testReorderToFrontBackstack()
529 getLaunchActivityBuilder().setTargetActivity(ALT_LAUNCHING_ACTIVITY) in testReorderToFrontChangingStack()
545 ALT_LAUNCHING_ACTIVITY); in testReorderToFrontChangingStack()
549 ALT_LAUNCHING_ACTIVITY); in testReorderToFrontChangingStack()
/cts/tests/framework/base/windowmanager/src/android/server/wm/multidisplay/
DMultiDisplayActivityLaunchTests.java42 import static android.server.wm.app.Components.ALT_LAUNCHING_ACTIVITY;
710 executeShellCommand("am start -n " + getActivityName(ALT_LAUNCHING_ACTIVITY)); in testLaunchSameAffinityLaunchesSameDisplay()
711 mWmState.waitForValidState(ALT_LAUNCHING_ACTIVITY); in testLaunchSameAffinityLaunchesSameDisplay()
717 waitAndAssertTopResumedActivity(ALT_LAUNCHING_ACTIVITY, newDisplay.mId, in testLaunchSameAffinityLaunchesSameDisplay()
728 getActivityName(ALT_LAUNCHING_ACTIVITY), in testLaunchSameAffinityLaunchesSameDisplay()
790 executeShellCommand("am start -n " + getActivityName(ALT_LAUNCHING_ACTIVITY) in testLaunchDisplayAffinityMatch()
793 mWmState.computeState(ALT_LAUNCHING_ACTIVITY); in testLaunchDisplayAffinityMatch()
801 getActivityName(ALT_LAUNCHING_ACTIVITY), in testLaunchDisplayAffinityMatch()
/cts/tests/framework/base/windowmanager/app/src/android/server/wm/app/
DComponents.java24 public static final ComponentName ALT_LAUNCHING_ACTIVITY = component("AltLaunchingActivity"); field in Components