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/windowmanager/app_base/src/android/server/wm/app/
DTestActivity.java21 import static android.server.wm.app.Components.TestActivity.TEST_ACTIVITY_ACTION_FINISH_SELF;
35 if (intent != null && TEST_ACTIVITY_ACTION_FINISH_SELF.equals(intent.getAction())) {
55 registerReceiver(mReceiver, new IntentFilter(TEST_ACTIVITY_ACTION_FINISH_SELF)); in onStart()
/cts/tests/framework/base/windowmanager/src/android/server/wm/
DAssistantStackTests.java44 import static android.server.wm.app.Components.TestActivity.TEST_ACTIVITY_ACTION_FINISH_SELF;
183 mBroadcastActionTrigger.doAction(TEST_ACTIVITY_ACTION_FINISH_SELF); in assertAssistantStackCanLaunchAndReturnFromNewTask()
DSplitScreenTests.java39 import static android.server.wm.app.Components.TestActivity.TEST_ACTIVITY_ACTION_FINISH_SELF;
506 mBroadcastActionTrigger.doAction(TEST_ACTIVITY_ACTION_FINISH_SELF); in testFinishDockActivityWhileMinimized()
DPinnedStackTests.java63 import static android.server.wm.app.Components.TestActivity.TEST_ACTIVITY_ACTION_FINISH_SELF;
1032 mBroadcastActionTrigger.doAction(TEST_ACTIVITY_ACTION_FINISH_SELF); in testNoResumeAfterTaskOverlayFinishes()
1224 mBroadcastActionTrigger.doAction(TEST_ACTIVITY_ACTION_FINISH_SELF); in testEnterPictureInPictureSavePosition()
/cts/tests/framework/base/windowmanager/app/src/android/server/wm/app/
DComponents.java220 public static final String TEST_ACTIVITY_ACTION_FINISH_SELF = field in Components.TestActivity