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/
DVrDisplayTests.java20 import static android.server.wm.app.Components.ALT_LAUNCHING_ACTIVITY;
228 launchActivity(ALT_LAUNCHING_ACTIVITY); in testActivityLaunchPostVr()
229 mWmState.computeState(ALT_LAUNCHING_ACTIVITY); in testActivityLaunchPostVr()
232 mWmState.assertVisibility(ALT_LAUNCHING_ACTIVITY, true /* visible */); in testActivityLaunchPostVr()
236 ALT_LAUNCHING_ACTIVITY); in testActivityLaunchPostVr()
241 getActivityName(ALT_LAUNCHING_ACTIVITY), in testActivityLaunchPostVr()
DActivityVisibilityTests.java31 import static android.server.wm.app.Components.ALT_LAUNCHING_ACTIVITY;
411 getLaunchActivityBuilder().setTargetActivity(ALT_LAUNCHING_ACTIVITY) in testReorderToFrontBackstack()
417 .setLaunchingActivity(ALT_LAUNCHING_ACTIVITY) in testReorderToFrontBackstack()
424 mWmState.waitForValidState(ALT_LAUNCHING_ACTIVITY); in testReorderToFrontBackstack()
428 ALT_LAUNCHING_ACTIVITY); in testReorderToFrontBackstack()
447 getLaunchActivityBuilder().setTargetActivity(ALT_LAUNCHING_ACTIVITY) in testReorderToFrontChangingStack()
462 mWmState.waitForValidState(ALT_LAUNCHING_ACTIVITY); in testReorderToFrontChangingStack()
466 ALT_LAUNCHING_ACTIVITY); in testReorderToFrontChangingStack()
DMultiDisplayActivityLaunchTests.java40 import static android.server.wm.app.Components.ALT_LAUNCHING_ACTIVITY;
700 executeShellCommand("am start -n " + getActivityName(ALT_LAUNCHING_ACTIVITY)); in testLaunchSameAffinityLaunchesSameDisplay()
701 mWmState.waitForValidState(ALT_LAUNCHING_ACTIVITY); in testLaunchSameAffinityLaunchesSameDisplay()
708 waitAndAssertTopResumedActivity(ALT_LAUNCHING_ACTIVITY, newDisplay.mId, in testLaunchSameAffinityLaunchesSameDisplay()
719 getActivityName(ALT_LAUNCHING_ACTIVITY), in testLaunchSameAffinityLaunchesSameDisplay()
774 executeShellCommand("am start -n " + getActivityName(ALT_LAUNCHING_ACTIVITY) in testLaunchDisplayAffinityMatch()
777 mWmState.computeState(ALT_LAUNCHING_ACTIVITY); in testLaunchDisplayAffinityMatch()
785 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