Searched refs:startTop (Results 1 – 3 of 3) sorted by relevance
/frameworks/support/transition/src/android/support/transition/ |
D | ChangeBounds.java | 276 final int startTop = startBounds.top; in createAnimator() local 283 final int startHeight = startBottom - startTop; in createAnimator() 290 if (startLeft != endLeft || startTop != endTop) ++numChanges; in createAnimator() 300 ViewUtils.setLeftTopRightBottom(view, startLeft, startTop, startRight, in createAnimator() 304 Path topLeftPath = getPathMotion().getPath(startLeft, startTop, endLeft, in createAnimator() 310 Path topLeftPath = getPathMotion().getPath(startLeft, startTop, in createAnimator() 329 } else if (startLeft != endLeft || startTop != endTop) { in createAnimator() 330 Path topLeftPath = getPathMotion().getPath(startLeft, startTop, in createAnimator() 344 ViewUtils.setLeftTopRightBottom(view, startLeft, startTop, startLeft + maxWidth, in createAnimator() 345 startTop + maxHeight); in createAnimator() [all …]
|
/frameworks/base/core/java/android/transition/ |
D | ChangeBounds.java | 292 final int startTop = startBounds.top; in createAnimator() local 299 final int startHeight = startBottom - startTop; in createAnimator() 306 if (startLeft != endLeft || startTop != endTop) ++numChanges; in createAnimator() 316 view.setLeftTopRightBottom(startLeft, startTop, startRight, startBottom); in createAnimator() 319 Path topLeftPath = getPathMotion().getPath(startLeft, startTop, endLeft, in createAnimator() 325 Path topLeftPath = getPathMotion().getPath(startLeft, startTop, in createAnimator() 343 } else if (startLeft != endLeft || startTop != endTop) { in createAnimator() 344 Path topLeftPath = getPathMotion().getPath(startLeft, startTop, in createAnimator() 358 view.setLeftTopRightBottom(startLeft, startTop, startLeft + maxWidth, in createAnimator() 359 startTop + maxHeight); in createAnimator() [all …]
|
/frameworks/support/core-ui/java/android/support/v4/widget/ |
D | ViewDragHelper.java | 587 final int startTop = mCapturedView.getTop(); in forceSettleCapturedViewAt() local 589 final int dy = finalTop - startTop; in forceSettleCapturedViewAt() 599 mScroller.startScroll(startLeft, startTop, dx, dy, duration); in forceSettleCapturedViewAt()
|