Searched refs:toBounds (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/ |
D | PipMotionHelper.java | 223 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 …]
|
D | PipManager.java | 399 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/ |
D | PipTaskOrganizer.java | 136 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 …]
|