Home
last modified time | relevance | path

Searched refs:TEST_ACTIVITY_ACTION_FINISH_SELF (Results 1 – 5 of 5) sorted by relevance

/cts/tests/framework/base/activitymanager/app_base/src/android/server/am/
DTestActivity.java19 import static android.server.am.Components.TestActivity.TEST_ACTIVITY_ACTION_FINISH_SELF;
34 if (intent != null && TEST_ACTIVITY_ACTION_FINISH_SELF.equals(intent.getAction())) {
54 registerReceiver(mReceiver, new IntentFilter(TEST_ACTIVITY_ACTION_FINISH_SELF)); in onStart()
/cts/tests/framework/base/activitymanager/src/android/server/am/
DActivityManagerAssistantStackTests.java44 import static android.server.am.Components.TestActivity.TEST_ACTIVITY_ACTION_FINISH_SELF;
188 executeShellCommand("am broadcast -a " + TEST_ACTIVITY_ACTION_FINISH_SELF); in assertAssistantStackCanLaunchAndReturnFromNewTask()
DActivityManagerSplitScreenTests.java38 import static android.server.am.Components.TestActivity.TEST_ACTIVITY_ACTION_FINISH_SELF;
507 executeShellCommand("am broadcast -a " + TEST_ACTIVITY_ACTION_FINISH_SELF); in testFinishDockActivityWhileMinimized()
DActivityManagerPinnedStackTests.java65 import static android.server.am.Components.TestActivity.TEST_ACTIVITY_ACTION_FINISH_SELF;
1059 executeShellCommand("am broadcast -a " + TEST_ACTIVITY_ACTION_FINISH_SELF); in testNoResumeAfterTaskOverlayFinishes()
1268 executeShellCommand("am broadcast -a " + TEST_ACTIVITY_ACTION_FINISH_SELF); in testEnterPictureInPictureSavePosition()
/cts/tests/framework/base/activitymanager/app/src/android/server/am/
DComponents.java150 public static final String TEST_ACTIVITY_ACTION_FINISH_SELF = field in Components.TestActivity