Home
last modified time | relevance | path

Searched refs:endBounds (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/core/java/android/transition/
DCrossfade.java177 Rect endBounds = (Rect) endVals.get(PROPNAME_BOUNDS); in createAnimator() local
238 if (mResizeBehavior == RESIZE_BEHAVIOR_SCALE && !startBounds.equals(endBounds)) { in createAnimator()
241 startBounds + ", " + endBounds); in createAnimator()
244 sRectEvaluator, startBounds, endBounds); in createAnimator()
250 sRectEvaluator, startBounds, endBounds); in createAnimator()
DChangeImageTransform.java145 Rect endBounds = (Rect) endValues.values.get(PROPNAME_BOUNDS); in createAnimator() local
148 if (startBounds == null || endBounds == null || startMatrix == null || endMatrix == null) { in createAnimator()
152 if (startBounds.equals(endBounds) && startMatrix.equals(endMatrix)) { in createAnimator()
DChangeBounds.java293 Rect endBounds = (Rect) endValues.values.get(PROPNAME_BOUNDS); in createAnimator() local
295 final int endLeft = endBounds.left; in createAnimator()
297 final int endTop = endBounds.top; in createAnimator()
299 final int endRight = endBounds.right; in createAnimator()
301 final int endBottom = endBounds.bottom; in createAnimator()
/frameworks/base/core/java/com/android/internal/transition/
DEpicenterTranslateClipReveal.java129 final Rect endBounds = (Rect) endValues.values.get(PROPNAME_BOUNDS); in onAppear() local
130 final Rect startBounds = getEpicenterOrCenter(endBounds); in onAppear()
131 final float startX = startBounds.centerX() - endBounds.centerX(); in onAppear()
132 final float startY = startBounds.centerY() - endBounds.centerY(); in onAppear()
167 final Rect endBounds = getEpicenterOrCenter(startBounds); in onDisappear() local
168 final float endX = endBounds.centerX() - startBounds.centerX(); in onDisappear()
169 final float endY = endBounds.centerY() - startBounds.centerY(); in onDisappear()
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/
DPipAnimationController.java113 PipTransitionAnimator getAnimator(SurfaceControl leash, Rect startBounds, Rect endBounds, in getAnimator() argument
117 PipTransitionAnimator.ofBounds(leash, startBounds, endBounds, sourceHintRect)); in getAnimator()
123 mCurrentAnimator.setDestinationBounds(endBounds); in getAnimator()
126 mCurrentAnimator.setDestinationBounds(endBounds); in getAnimator()
128 mCurrentAnimator.updateEndValue(new Rect(endBounds)); in getAnimator()
132 PipTransitionAnimator.ofBounds(leash, startBounds, endBounds, sourceHintRect)); in getAnimator()
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
DMediaHierarchyManager.kt456 endBounds: Rect, in interpolateBounds()
461 endBounds.left.toFloat(), progress).toInt() in interpolateBounds()
463 endBounds.top.toFloat(), progress).toInt() in interpolateBounds()
465 endBounds.right.toFloat(), progress).toInt() in interpolateBounds()
467 endBounds.bottom.toFloat(), progress).toInt() in interpolateBounds()
/frameworks/base/services/core/java/com/android/server/wm/
DWindowChangeAnimationSpec.java58 public WindowChangeAnimationSpec(Rect startBounds, Rect endBounds, DisplayInfo displayInfo, in WindowChangeAnimationSpec() argument
61 mEndBounds = new Rect(endBounds); in WindowChangeAnimationSpec()
DRemoteAnimationController.java360 Rect endBounds, Rect startBounds) {
362 mAdapter = new RemoteAnimationAdapterWrapper(this, endPos, localBounds, endBounds);