Home
last modified time | relevance | path

Searched refs:REQUEST_HANDLE_EXIT_ON_CREATE (Results 1 – 3 of 3) sorted by relevance

/cts/tests/framework/base/windowmanager/src/android/server/wm/animations/
DSplashscreenTests.java55 import static android.server.wm.app.Components.TestStartingWindowKeys.REQUEST_HANDLE_EXIT_ON_CREATE;
396 extraBool(REQUEST_HANDLE_EXIT_ON_CREATE, extraOnCreate), in launchRuntimeHandleExitAnimationActivity()
478 extraBool(REQUEST_HANDLE_EXIT_ON_CREATE, true)); in testHandleExitIconAnimatingActivity()
492 extraBool(REQUEST_HANDLE_EXIT_ON_CREATE, true), in testCancelHandleExitIconAnimatingActivity()
552 intent.putExtra(REQUEST_HANDLE_EXIT_ON_CREATE, true), noIconOptions); in testLaunchWithSolidColorOptions()
569 intent.putExtra(REQUEST_HANDLE_EXIT_ON_CREATE, true); in testLaunchAppWithIconOptions()
599 .putExtra(REQUEST_HANDLE_EXIT_ON_CREATE, true) in testLaunchActivitiesWithIconOptions()
615 .putExtra(REQUEST_HANDLE_EXIT_ON_CREATE, true), in testLaunchActivitiesWithSolidColorOptions()
617 .putExtra(REQUEST_HANDLE_EXIT_ON_CREATE, true) in testLaunchActivitiesWithSolidColorOptions()
/cts/tests/framework/base/windowmanager/app/src/android/server/wm/app/
DHandleSplashScreenExitActivity.java31 import static android.server.wm.app.Components.TestStartingWindowKeys.REQUEST_HANDLE_EXIT_ON_CREATE;
64 if (getIntent().getBooleanExtra(REQUEST_HANDLE_EXIT_ON_CREATE, false)) { in onCreate()
DComponents.java301 public static final String REQUEST_HANDLE_EXIT_ON_CREATE = "handle_exit_onCreate"; field in Components.TestStartingWindowKeys