Home
last modified time | relevance | path

Searched refs:TaskView (Results 1 – 25 of 50) sorted by relevance

12

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DRecentsViewUtils.kt57 fun screenshotTasks(taskView: TaskView): Map<Int, ThumbnailData> { in <lambda>()
86 class TaskViewsIterable(val recentsView: RecentsView<*, *>) : Iterable<TaskView> { in <lambda>()
88 fun forEachWithIndexInParent(consumer: BiConsumer<Int, TaskView>) { in <lambda>()
90 (child as? TaskView)?.let { consumer.accept(index, it) } in <lambda>()
94 override fun iterator(): Iterator<TaskView> = in <lambda>()
95 recentsView.children.mapNotNull { it as? TaskView }.iterator() in <lambda>()
108 fun getLargeTaskViews(): List<TaskView> = taskViews.filter { it.isLargeTile } in <lambda>()
111 fun getTopRowTaskViews(): List<TaskView> = in <lambda>()
118 fun getBottomRowTaskViews(): List<TaskView> = in <lambda>()
133 fun getFirstLargeTaskView(): TaskView? = in <lambda>()
[all …]
DRecentsView.java79 import static com.android.quickstep.views.TaskView.SPLIT_ALPHA;
582 private final ViewPool<TaskView> mTaskViewPool;
628 private Map<TaskView, Integer> mTaskViewsDismissPrimaryTranslations =
629 new HashMap<TaskView, Integer>();
646 TaskView taskView = getTaskViewByTaskId(taskId);
771 private TaskView mSplitHiddenTaskView;
773 private TaskView mSecondSplitHiddenView;
818 private TaskView mMovingTaskView;
874 public TaskView getFirstTaskView() { in getFirstTaskView()
1138 TaskView taskView = getTaskViewByTaskId(taskId); in onTaskThumbnailChanged()
[all …]
DTaskView.kt115 open class TaskView in <lambda>() class
219 protected val primarySplitTranslationProperty: FloatProperty<TaskView> in <lambda>()
226 protected val secondarySplitTranslationProperty: FloatProperty<TaskView> in <lambda>()
233 val primaryDismissTranslationProperty: FloatProperty<TaskView> in <lambda>()
237 val secondaryDismissTranslationProperty: FloatProperty<TaskView> in <lambda>()
241 protected val primaryTaskOffsetTranslationProperty: FloatProperty<TaskView> in <lambda>()
248 protected val secondaryTaskOffsetTranslationProperty: FloatProperty<TaskView> in <lambda>()
255 protected val taskResistanceTranslationProperty: FloatProperty<TaskView> in <lambda>()
271 .obtainStyledAttributes(attrs, R.styleable.TaskView, defStyleAttr, defStyleRes) in <lambda>()
289 R.styleable.TaskView, in <lambda>()
[all …]
DRecentsDismissUtils.kt51 draggedTaskView: TaskView?, in <lambda>()
115 draggedTaskView: TaskView, in <lambda>()
117 tasksToExclude: List<TaskView> = emptyList(), in <lambda>()
213 draggedTaskView: TaskView, in <lambda>()
215 ): Sequence<Pair<TaskView, Int>> { in <lambda>()
255 taskView: TaskView, in <lambda>()
364 dismissedTaskView: TaskView, in <lambda>()
374 var tasksToReflow: List<TaskView> in <lambda>()
474 private fun getDismissedTaskGapForReflow(dismissedTaskView: TaskView): Float { in <lambda>()
516 taskViews: List<TaskView>, in <lambda>()
[all …]
DTaskMenuView.kt66 private lateinit var taskView: TaskView in <lambda>()
322 if (closing) 0f else TaskView.MAX_PAGE_SCRIM_ALPHA, in <lambda>()
348 private fun TaskView.isOnGridBottomRow(): Boolean = in <lambda>() method
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/model/data/
DTaskViewItemInfo.kt30 import com.android.quickstep.views.TaskView
32 class TaskViewItemInfo(taskView: TaskView, taskContainer: TaskContainer?) : WorkspaceItemInfo() {
33 @VisibleForTesting(otherwise = PRIVATE) val taskViewAtom: LauncherAtom.TaskView
77 ): LauncherAtom.TaskView = in buildProto()
78 LauncherAtom.TaskView.newBuilder() in buildProto()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/
DPortraitOverviewStateTouchHelper.java27 import com.android.quickstep.views.TaskView;
67 TaskView taskView = mRecentsView.getNextPageTaskView(); in shouldSwipeDownReturnToApp()
80 TaskView taskView = mRecentsView.getCurrentPageTaskView(); in createSwipeDownToTaskAppAnimation()
DTaskViewLaunchTouchController.kt37 import com.android.quickstep.views.TaskView in <lambda>()
59 private var taskBeingDragged: TaskView? = null in <lambda>()
64 private fun canTaskLaunchTaskView(taskView: TaskView?) = in <lambda>()
DTaskViewTouchControllerDeprecated.java49 import com.android.quickstep.views.TaskView;
93 private TaskView mTaskBeingDragged;
163 for (TaskView taskView : mRecentsView.getTaskViews()) { in onControllerInterceptTouchEvent()
DQuickSwitchTouchController.java52 import com.android.quickstep.views.TaskView;
152 TaskView firstTaskView = mOverviewPanel.getFirstTaskView(); in updateFullscreenProgress()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DLauncherSwipeHandlerV2.java57 import com.android.quickstep.views.TaskView;
86 @Nullable TaskView targetTaskView) { in createHomeAnimationFactory()
98 TaskView sourceTaskView = mRecentsView == null && targetTaskView == null in createHomeAnimationFactory()
121 public TaskView getTargetTaskView() { in createHomeAnimationFactory()
134 View workspaceView, @Nullable TaskView targetTaskView) {
213 public TaskView getTargetTaskView() {
299 private View findWorkspaceView(List<IBinder> launchCookies, TaskView sourceTaskView) {
DTaskShortcutFactory.java62 import com.android.quickstep.views.TaskView;
113 TaskView taskView = taskContainer.getTaskView();
138 TaskContainer taskContainer, TaskView taskView, in SplitSelectSystemShortcut()
187 private final TaskView mTaskView;
312 TaskView taskView = mTaskContainer.getTaskView(); in onClick()
339 final TaskView taskView = taskContainer.getTaskView();
378 final TaskView taskView = taskContainer.getTaskView();
DTaskViewUtils.java92 import com.android.quickstep.views.TaskView;
120 public static TaskView findTaskViewToLaunch( in findTaskViewToLaunch()
122 if (v instanceof TaskView) { in findTaskViewToLaunch()
123 TaskView taskView = (TaskView) v; in findTaskViewToLaunch()
134 for (TaskView taskView : recentsView.getTaskViews()) { in findTaskViewToLaunch()
165 TaskView taskView = recentsView.getTaskViewByTaskId(openingTaskId); in findTaskViewToLaunch()
175 @NonNull TaskView taskView, in createRecentsWindowAnimator()
594 @NonNull TaskView launchingTaskView, in composeRecentsDesktopLaunchAnimator()
634 TaskView taskView = findTaskViewToLaunch(recentsView, v, appTargets); in composeRecentsLaunchAnimator()
DRecentsActivity.java93 import com.android.quickstep.views.TaskView;
267 if (!(v instanceof TaskView)) { in getActivityLaunchOptions()
271 final TaskView taskView = (TaskView) v; in getActivityLaunchOptions()
324 @NonNull TaskView taskView, in composeRecentsLaunchAnimator()
DTaskOverlayFactory.java53 import com.android.quickstep.views.TaskView;
65 public static List<SystemShortcut> getEnabledShortcuts(TaskView taskView, in getEnabledShortcuts()
193 public TaskView getTaskView() { in getTaskView()
DSwipeUpAnimationLogic.java55 import com.android.quickstep.views.TaskView;
246 public TaskView getTargetTaskView() { in getTargetTaskView()
337 TaskView targetTaskView = homeAnimationFactory.getTargetTaskView(); in getWindowAnimationToHomeInternal()
401 final TaskView mTargetTaskView;
/packages/apps/Launcher3/quickstep/tests/src/com/android/quickstep/
DDigitalWellBeingToastTest.java41 import com.android.quickstep.views.TaskView;
94 final TaskView task = getOnceNotNull("No latest task", launcher -> getLatestTask(launcher)); in getToast()
105 private TaskView getLatestTask(Launcher launcher) { in getLatestTask()
DTaskViewTest.java41 import com.android.quickstep.views.TaskView;
59 private TaskView mTaskView;
73 mTaskView = new TaskView(mContext, null, 0, 0, mFocusAnimator, mHoverAnimator); in setup()
DDesktopSystemShortcutTest.kt47 import com.android.quickstep.views.TaskView
87 private val taskView: TaskView = createTaskViewMock()
345 private fun createTaskViewMock(): TaskView { in createTaskViewMock()
346 val taskView: TaskView = mock() in createTaskViewMock()
DAspectRatioSystemShortcutTests.kt58 import com.android.quickstep.views.TaskView
126 private val taskView: TaskView =
128 TaskView
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/desktop/
DDesktopRecentsTransitionController.kt36 import com.android.quickstep.views.TaskView in <lambda>()
91 private val taskView: TaskView, in <lambda>()
/packages/apps/Launcher3/protos/
Dlauncher_atom.proto36 TaskView task_view = 15;
266 // TaskView in RecentsView.
267 message TaskView { message
271 // Index of TaskView in RecentsView.
277 // Number of tasks in the TaskView.
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/fallback/
DFallbackRecentsView.java57 import com.android.quickstep.views.TaskView;
140 TaskView tv = getTaskViewByTaskId(mHomeTask.key.id); in onPrepareGestureEndAnimation()
176 protected TaskView getHomeTaskView() { in getHomeTaskView()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/states/
DOverviewState.java38 import com.android.quickstep.views.TaskView;
224 TaskView taskView = recentsView.getRunningTaskView();
/packages/apps/Car/Launcher/app/
DOWNERS9 gauravbhola@google.com # for TaskView only

12