Home
last modified time | relevance | path

Searched refs:splitSelectSource (Results 1 – 11 of 11) sorted by relevance

/packages/apps/Launcher3/quickstep/tests/src/com/android/quickstep/util/
DSplitAnimationControllerTest.kt58 @Mock lateinit var splitSelectSource: SplitConfigurationOptions.SplitSelectSource variable in com.android.quickstep.util.SplitAnimationControllerTest
73 whenever(splitSelectSource.drawable).thenReturn(mockSplitSourceDrawable) in setup()
74 whenever(splitSelectSource.view).thenReturn(mockSplitSourceView) in setup()
90 { mockTaskView }, { splitSelectSource }) in getFirstAnimInitViews_nullTaskViewIcon_useSplitSourceIcon()
104 { mockTaskView }, { splitSelectSource }) in getFirstAnimInitViews_validTaskViewIcon_useTaskViewIcon()
117 whenever(splitSelectSource.drawable).thenReturn(null) in getFirstAnimInitViews_validTaskViewNullSplitSource_useTaskViewIcon()
121 { mockTaskView }, { splitSelectSource }) in getFirstAnimInitViews_validTaskViewNullSplitSource_useTaskViewIcon()
135 { mockTaskView }, { splitSelectSource }) in getFirstAnimInitViews_nullTaskViewValidSplitSource_noTaskDismissal()
160 { mockGroupedTaskView }, { splitSelectSource }) in getFirstAnimInitViews_nullTaskViewValidSplitSource_groupedTaskView()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/splitscreen/
DSplitShortcut.kt51 protected val splitSelectSource: SplitSelectSource? constant
86 val splitSelectSource = splitSelectSource in onClick() constant
87 if (splitSelectSource == null) { in onClick()
91 mTarget!!.startSplitSelection(splitSelectSource) in onClick()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DSplitAnimationController.kt70 val splitSelectSource = splitSelectSourceSupplier.get() in getFirstAnimInitViews() constant
73 return SplitAnimInitProps(splitSelectSource!!.view, originalBitmap = null, in getFirstAnimInitViews()
74 splitSelectSource.drawable, fadeWithThumbnail = false, isStagedTask = true, in getFirstAnimInitViews()
81 val drawable = getDrawable(container.iconView, splitSelectSource) in getFirstAnimInitViews()
94 val drawable = getDrawable(taskView.iconView, splitSelectSource) in getFirstAnimInitViews()
108 fun getDrawable(iconView: IconView, splitSelectSource: SplitSelectSource?) : Drawable? { in getDrawable()
109 if (iconView.drawable == null && splitSelectSource != null) { in getDrawable()
110 return splitSelectSource.drawable in getDrawable()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
DTaskbarUIController.java204 public void startSplitSelection(SplitConfigurationOptions.SplitSelectSource splitSelectSource) { in startSplitSelection() argument
211 Collections.singletonList(splitSelectSource.itemInfo.getComponentKey()), in startSplitSelection()
214 splitSelectSource.alreadyRunningTaskId = foundTask == null in startSplitSelection()
217 splitSelectSource.animateCurrentTaskDismissal = foundTask != null; in startSplitSelection()
218 recentsView.initiateSplitSelect(splitSelectSource); in startSplitSelection()
DTaskbarActivityContext.java902 public void startSplitSelection(SplitSelectSource splitSelectSource) { in startSplitSelection() argument
903 mControllers.uiController.startSplitSelection(splitSelectSource); in startSplitSelection()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/overlay/
DTaskbarOverlayContext.java139 public void startSplitSelection(SplitSelectSource splitSelectSource) { in startSplitSelection() argument
140 mUiController.startSplitSelection(splitSelectSource); in startSplitSelection()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/fallback/
DFallbackRecentsView.java285 public void initiateSplitSelect(SplitSelectSource splitSelectSource) { in initiateSplitSelect() argument
286 super.initiateSplitSelect(splitSelectSource); in initiateSplitSelect()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DLauncherRecentsView.java229 public void initiateSplitSelect(SplitSelectSource splitSelectSource) { in initiateSplitSelect() argument
230 super.initiateSplitSelect(splitSelectSource); in initiateSplitSelect()
DRecentsView.java4646 public void initiateSplitSelect(SplitSelectSource splitSelectSource) {
4648 mSplitSelectSource = splitSelectSource;
4649 mSplitHiddenTaskView = getTaskViewByTaskId(splitSelectSource.alreadyRunningTaskId);
4652 .setAnimateCurrentTaskDismissal(splitSelectSource.animateCurrentTaskDismissal);
4657 mSplitSelectStateController.setInitialTaskSelect(splitSelectSource.intent,
4658 splitSelectSource.position.stagePosition, splitSelectSource.itemInfo,
4659 splitSelectSource.splitEvent, splitSelectSource.alreadyRunningTaskId);
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/
DQuickstepLauncher.java618 public void startSplitSelection(SplitSelectSource splitSelectSource) { in startSplitSelection() argument
623 Collections.singletonList(splitSelectSource.itemInfo.getComponentKey()), in startSplitSelection()
627 splitSelectSource.alreadyRunningTaskId = taskWasFound in startSplitSelection()
631 startSplitToHome(splitSelectSource); in startSplitSelection()
633 recentsView.initiateSplitSelect(splitSelectSource); in startSplitSelection()
/packages/apps/Launcher3/src/com/android/launcher3/views/
DActivityContext.java144 SplitConfigurationOptions.SplitSelectSource splitSelectSource) { in startSplitSelection() argument