Home
last modified time | relevance | path

Searched refs:startBounds (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/core/java/android/transition/
DCrossfade.java176 Rect startBounds = (Rect) startVals.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.java153 Rect startBounds = (Rect) startValues.values.get(PROPNAME_BOUNDS); in createAnimator() local
155 if (startBounds == null || endBounds == null) { in createAnimator()
165 if (startBounds.equals(endBounds) && matricesEqual) { in createAnimator()
DChangeBounds.java288 Rect startBounds = (Rect) startValues.values.get(PROPNAME_BOUNDS); in createAnimator() local
290 final int startLeft = startBounds.left; in createAnimator()
292 final int startTop = startBounds.top; in createAnimator()
294 final int startRight = startBounds.right; in createAnimator()
296 final int startBottom = startBounds.bottom; in createAnimator()
/frameworks/base/core/java/com/android/internal/transition/
DEpicenterTranslateClipReveal.java130 final Rect startBounds = getEpicenterOrCenter(endBounds); in onAppear() local
131 final float startX = startBounds.centerX() - endBounds.centerX(); in onAppear()
132 final float startY = startBounds.centerY() - endBounds.centerY(); in onAppear()
166 final Rect startBounds = (Rect) endValues.values.get(PROPNAME_BOUNDS); in onDisappear() local
167 final Rect endBounds = getEpicenterOrCenter(startBounds); in onDisappear()
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/
DTaskPositioner.java374 float startX, float startY, Rect startBounds) { in startDrag() argument
381 if (startX < startBounds.left) { in startDrag()
384 if (startX > startBounds.right) { in startDrag()
387 if (startY < startBounds.top) { in startDrag()
390 if (startY > startBounds.bottom) { in startDrag()
400 mStartOrientationWasLandscape = startBounds.width() >= startBounds.height(); in startDrag()
401 mWindowOriginalBounds.set(startBounds); in startDrag()
405 mWindowDragBounds.set(startBounds); in startDrag()
/frameworks/support/transition/src/android/support/transition/
DChangeImageTransform.java133 Rect startBounds = (Rect) startValues.values.get(PROPNAME_BOUNDS); in createAnimator() local
135 if (startBounds == null || endBounds == null) { in createAnimator()
145 if (startBounds.equals(endBounds) && matricesEqual) { in createAnimator()
DChangeBounds.java272 Rect startBounds = (Rect) startValues.values.get(PROPNAME_BOUNDS); in createAnimator() local
274 final int startLeft = startBounds.left; in createAnimator()
276 final int startTop = startBounds.top; in createAnimator()
278 final int startRight = startBounds.right; in createAnimator()
280 final int startBottom = startBounds.bottom; in createAnimator()