Home
last modified time | relevance | path

Searched refs:taskRect (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/
DRecentsTransitionComposer.java67 Rect taskRect = new Rect(); in composeAnimationSpec() local
68 transform.rect.round(taskRect); in composeAnimationSpec()
75 taskRect.bottom = taskRect.top + stackView.getMeasuredHeight(); in composeAnimationSpec()
77 return new AppTransitionAnimationSpecCompat(taskView.getTask().key.id, b, taskRect); in composeAnimationSpec()
134 Rect taskRect) { in composeOffscreenAnimationSpec() argument
135 return new AppTransitionAnimationSpecCompat(task.key.id, null, taskRect); in composeOffscreenAnimationSpec()
DRecentsView.java623 final Rect taskRect = getTaskRect(event.taskView);
628 return mTransitionHelper.composeDockAnimationSpec(event.taskView, taskRect);
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
DDividerView.java1094 private void applyExitAnimationParallax(Rect taskRect, int position) { in applyExitAnimationParallax() argument
1096 taskRect.offset(0, (int) ((position - mExitStartPosition) * 0.25f)); in applyExitAnimationParallax()
1098 taskRect.offset((int) ((position - mExitStartPosition) * 0.25f), 0); in applyExitAnimationParallax()
1100 taskRect.offset((int) ((mExitStartPosition - position) * 0.25f), 0); in applyExitAnimationParallax()
1157 private void applyDismissingParallax(Rect taskRect, int dockSide, SnapTarget snapTarget, in applyDismissingParallax() argument
1180 int width = taskRect.width(); in applyDismissingParallax()
1181 int height = taskRect.height(); in applyDismissingParallax()
1184 taskRect.left = offsetPosition - width; in applyDismissingParallax()
1185 taskRect.right = offsetPosition; in applyDismissingParallax()
1188 taskRect.left = offsetPosition + mDividerSize; in applyDismissingParallax()
[all …]
/frameworks/base/services/core/java/com/android/server/am/
DActivityManagerShellCommand.java2795 int moveTask(int taskId, Rect taskRect, Rect stackRect, int stepSize,
2801 && ((horizontal && taskRect.right < stackRect.right)
2802 ||(!horizontal && taskRect.bottom < stackRect.bottom))) {
2804 maxMove = Math.min(stepSize, stackRect.right - taskRect.right);
2806 taskRect.right += maxMove;
2807 taskRect.left += maxMove;
2809 maxMove = Math.min(stepSize, stackRect.bottom - taskRect.bottom);
2811 taskRect.top += maxMove;
2812 taskRect.bottom += maxMove;
2814 taskResize(taskId, taskRect, delay_ms, false);
[all …]