Searched refs:sourceTask (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/services/core/java/com/android/server/wm/ |
D | TaskDisplayArea.java | 866 @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 …]
|
D | DesktopModeLaunchParamsModifier.java | 116 final Task sourceTask = source.getTask(); in calculate() local 118 && isEnteringDesktopMode(sourceTask, options, currentParams)) { in calculate() 129 outParams.mWindowingMode = sourceTask.getWindowingMode(); in calculate()
|
D | BackgroundActivityStartController.java | 1323 Task sourceTask = sourceRecord.getTask(); 1325 Task taskToCheck = taskToFront ? sourceTask : targetTask; 1334 bas.mTopActivityMatchesSource = (sourceTask != null 1335 && (sourceTask.isVisible() || sourceTask == targetTask));
|
D | RootWindowContainer.java | 3078 @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()
|
D | ActivityStarter.java | 3351 final Task sourceTask = mSourceRecord != null ? mSourceRecord.getTask() : null; in getOrCreateRootTask() local 3352 return mRootWindowContainer.getOrCreateRootTask(r, aOptions, task, sourceTask, onTop, in getOrCreateRootTask()
|
D | Task.java | 6463 Builder setSourceTask(Task sourceTask) { 6464 mSourceTask = sourceTask;
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | DesktopModeLaunchParamsModifierTests.java | 1532 final Task sourceTask = new TaskBuilder(mSupervisor).setActivityType( in testFreeformWindowingModeAppliedIfSourceTaskExists() local 1535 .setTask(sourceTask).build(); in testFreeformWindowingModeAppliedIfSourceTaskExists()
|