Home
last modified time | relevance | path

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

/cts/tests/framework/base/windowmanager/app_base/src/android/server/wm/app/
DTestActivity.java26 import static android.server.wm.app.Components.TestActivity.TEST_ACTIVITY_ACTION_FINISH_SELF;
49 if (intent != null && TEST_ACTIVITY_ACTION_FINISH_SELF.equals(intent.getAction())) {
91 registerReceiver(mReceiver, new IntentFilter(TEST_ACTIVITY_ACTION_FINISH_SELF)); in onStart()
/cts/tests/framework/base/windowmanager/src/android/server/wm/
DFreeformWindowingModeTests.java27 import static android.server.wm.app.Components.TestActivity.TEST_ACTIVITY_ACTION_FINISH_SELF;
94 mBroadcastActionTrigger.doAction(TEST_ACTIVITY_ACTION_FINISH_SELF); in testNonResizeableActivityHasFullDisplayBounds()
DAssistantStackTests.java43 import static android.server.wm.app.Components.TestActivity.TEST_ACTIVITY_ACTION_FINISH_SELF;
186 mBroadcastActionTrigger.doAction(TEST_ACTIVITY_ACTION_FINISH_SELF); in assertAssistantStackCanLaunchAndReturnFromNewTask()
284 mBroadcastActionTrigger.doAction(TEST_ACTIVITY_ACTION_FINISH_SELF); in testTranslucentAssistantActivityStackVisibility()
DMultiWindowTests.java34 import static android.server.wm.app.Components.TestActivity.TEST_ACTIVITY_ACTION_FINISH_SELF;
561 mBroadcastActionTrigger.doAction(TEST_ACTIVITY_ACTION_FINISH_SELF); in testVisibilityWithTranslucentAndTopFinishingActivity()
DPinnedStackTests.java74 import static android.server.wm.app.Components.TestActivity.TEST_ACTIVITY_ACTION_FINISH_SELF;
1156 mBroadcastActionTrigger.doAction(TEST_ACTIVITY_ACTION_FINISH_SELF); in testNoResumeAfterTaskOverlayFinishes()
/cts/tests/framework/base/windowmanager/app/src/android/server/wm/app/
DComponents.java310 public static final String TEST_ACTIVITY_ACTION_FINISH_SELF = field in Components.TestActivity