Home
last modified time | relevance | path

Searched refs:endBounds (Results 1 – 6 of 6) 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/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.java323 RemoteAnimationRecord(AppWindowToken appWindowToken, Point endPos, Rect endBounds, in RemoteAnimationRecord() argument
326 mAdapter = new RemoteAnimationAdapterWrapper(this, endPos, endBounds); in RemoteAnimationRecord()