Searched refs:startTop (Results 1 – 3 of 3) sorted by relevance
/frameworks/support/transition/src/main/java/androidx/transition/ |
D | ChangeBounds.java | 277 final int startTop = startBounds.top; in createAnimator() local 284 final int startHeight = startBottom - startTop; in createAnimator() 291 if (startLeft != endLeft || startTop != endTop) ++numChanges; in createAnimator() 301 ViewUtils.setLeftTopRightBottom(view, startLeft, startTop, startRight, in createAnimator() 305 Path topLeftPath = getPathMotion().getPath(startLeft, startTop, endLeft, in createAnimator() 311 Path topLeftPath = getPathMotion().getPath(startLeft, startTop, in createAnimator() 330 } else if (startLeft != endLeft || startTop != endTop) { in createAnimator() 331 Path topLeftPath = getPathMotion().getPath(startLeft, startTop, in createAnimator() 345 ViewUtils.setLeftTopRightBottom(view, startLeft, startTop, startLeft + maxWidth, in createAnimator() 346 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() 348 view.setLeftTopRightBottom(startLeft, startTop, startRight, startBottom); in createAnimator() 351 Path topLeftPath = getPathMotion().getPath(startLeft, startTop, endLeft, in createAnimator() 357 Path topLeftPath = getPathMotion().getPath(startLeft, startTop, in createAnimator() 375 } else if (startLeft != endLeft || startTop != endTop) { in createAnimator() 376 Path topLeftPath = getPathMotion().getPath(startLeft, startTop, in createAnimator() 390 view.setLeftTopRightBottom(startLeft, startTop, startLeft + maxWidth, in createAnimator() 391 startTop + maxHeight); in createAnimator() [all …]
|
/frameworks/support/customview/src/main/java/androidx/customview/widget/ |
D | ViewDragHelper.java | 598 final int startTop = mCapturedView.getTop(); in forceSettleCapturedViewAt() local 600 final int dy = finalTop - startTop; in forceSettleCapturedViewAt() 610 mScroller.startScroll(startLeft, startTop, dx, dy, duration); in forceSettleCapturedViewAt()
|