Home
last modified time | relevance | path

Searched refs:toBounds (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
DPipMotionHelper.java223 void movePip(Rect toBounds) { in movePip() argument
224 movePip(toBounds, false /* isDragging */); in movePip()
234 void movePip(Rect toBounds, boolean isDragging) { in movePip() argument
245 resizePipUnchecked(toBounds); in movePip()
246 mBounds.set(toBounds); in movePip()
248 mTemporaryBounds.set(toBounds); in movePip()
257 .spring(FloatProperties.RECT_X, toBounds.left, mSpringConfig) in movePip()
258 .spring(FloatProperties.RECT_Y, toBounds.top, mSpringConfig); in movePip()
260 startBoundsAnimator(toBounds.left /* toX */, toBounds.top /* toY */, in movePip()
562 private void resizePipUnchecked(Rect toBounds) {
[all …]
DPipManager.java399 private void updateMovementBounds(@Nullable Rect toBounds, boolean fromRotation, in updateMovementBounds() argument
404 final Rect outBounds = new Rect(toBounds); in updateMovementBounds()
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/
DPipTaskOrganizer.java136 Rect toBounds = (Rect) args.arg2;
137 resizePip(toBounds);
139 updateBoundsCallback.accept(toBounds);
145 Rect toBounds = (Rect) args.arg3;
148 animateResizePip(currentBounds, toBounds, sourceHintRect,
151 updateBoundsCallback.accept(toBounds);
160 Rect toBounds = new Rect(originalBounds);
161 toBounds.offset(0, offset);
163 updateBoundsCallback.accept(toBounds);
169 Rect toBounds = (Rect) args.arg3;
[all …]