Home
last modified time | relevance | path

Searched refs:sourceTask (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
DTaskDisplayArea.java866 @Nullable Task candidateTask, @Nullable Task sourceTask,
880 options, sourceTask, launchFlags, candidateTask);
912 .setSourceTask(sourceTask)
925 @Nullable Task candidateTask, @Nullable Task sourceTask,
940 return getOrCreateRootTask(windowingMode, activityType, onTop, candidateTask, sourceTask,
1039 @Nullable Task sourceTask, int launchFlags) {
1040 return getLaunchRootTask(windowingMode, activityType, options, sourceTask, launchFlags,
1046 @Nullable Task sourceTask, int launchFlags, @Nullable Task candidateTask) {
1069 if (sourceTask != null && (sourceTask == candidateTask
1070 || sourceTask.topRunningActivity() == null)) {
[all …]
DDesktopModeLaunchParamsModifier.java116 final Task sourceTask = source.getTask(); in calculate() local
118 && isEnteringDesktopMode(sourceTask, options, currentParams)) { in calculate()
129 outParams.mWindowingMode = sourceTask.getWindowingMode(); in calculate()
DBackgroundActivityStartController.java1323 Task sourceTask = sourceRecord.getTask();
1325 Task taskToCheck = taskToFront ? sourceTask : targetTask;
1334 bas.mTopActivityMatchesSource = (sourceTask != null
1335 && (sourceTask.isVisible() || sourceTask == targetTask));
DRootWindowContainer.java3078 @Nullable Task sourceTask, boolean onTop, in getOrCreateRootTask() argument
3127 sourceTask, launchParams, launchFlags, activityType, onTop); in getOrCreateRootTask()
3168 return taskDisplayArea.getOrCreateRootTask(r, options, candidateTask, sourceTask, in getOrCreateRootTask()
DActivityStarter.java3351 final Task sourceTask = mSourceRecord != null ? mSourceRecord.getTask() : null; in getOrCreateRootTask() local
3352 return mRootWindowContainer.getOrCreateRootTask(r, aOptions, task, sourceTask, onTop, in getOrCreateRootTask()
DTask.java6463 Builder setSourceTask(Task sourceTask) {
6464 mSourceTask = sourceTask;
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DDesktopModeLaunchParamsModifierTests.java1532 final Task sourceTask = new TaskBuilder(mSupervisor).setActivityType( in testFreeformWindowingModeAppliedIfSourceTaskExists() local
1535 .setTask(sourceTask).build(); in testFreeformWindowingModeAppliedIfSourceTaskExists()