Home
last modified time | relevance | path

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

/frameworks/support/transition/src/android/support/transition/
DChangeBounds.java274 final int startLeft = startBounds.left; in createAnimator() local
282 final int startWidth = startRight - startLeft; 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()
348 if (startLeft != endLeft || startTop != endTop) { in createAnimator()
[all …]
/frameworks/base/core/java/android/transition/
DChangeBounds.java290 final int startLeft = startBounds.left; in createAnimator() local
298 final int startWidth = startRight - startLeft; 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()
362 if (startLeft != endLeft || startTop != endTop) { in createAnimator()
[all …]
/frameworks/base/core/java/android/widget/
DActionMenuView.java521 int startLeft = getPaddingLeft(); in onLayout() local
529 startLeft += lp.leftMargin; in onLayout()
533 v.layout(startLeft, t, startLeft + width, t + height); in onLayout()
534 startLeft += width + lp.rightMargin + spacerSize; in onLayout()
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DActionMenuView.java523 int startLeft = getPaddingLeft(); in onLayout() local
531 startLeft += lp.leftMargin; in onLayout()
535 v.layout(startLeft, t, startLeft + width, t + height); in onLayout()
536 startLeft += width + lp.rightMargin + spacerSize; in onLayout()
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DPagingIndicator.java314 int startLeft = mid - requiredWidth / 2; in calculateDotPositions() local
316 mDotSelectedX[0] = startLeft + mDotRadius - mDotGap + mArrowGap; in calculateDotPositions()
317 mDotSelectedPrevX[0] = startLeft + mDotRadius; in calculateDotPositions()
318 mDotSelectedNextX[0] = startLeft + mDotRadius - 2 * mDotGap + 2 * mArrowGap; in calculateDotPositions()
/frameworks/support/design/src/android/support/design/widget/
DTabLayout.java1980 final int startLeft; in animateIndicatorToPosition() local
1985 startLeft = mIndicatorLeft; in animateIndicatorToPosition()
1993 startLeft = startRight = targetLeft - offset; in animateIndicatorToPosition()
1995 startLeft = startRight = targetRight + offset; in animateIndicatorToPosition()
2000 startLeft = startRight = targetRight + offset; in animateIndicatorToPosition()
2002 startLeft = startRight = targetLeft - offset; in animateIndicatorToPosition()
2007 if (startLeft != targetLeft || startRight != targetRight) { in animateIndicatorToPosition()
2017 AnimationUtils.lerp(startLeft, targetLeft, fraction), in animateIndicatorToPosition()
/frameworks/support/core-ui/java/android/support/v4/widget/
DViewDragHelper.java586 final int startLeft = mCapturedView.getLeft(); in forceSettleCapturedViewAt() local
588 final int dx = finalLeft - startLeft; in forceSettleCapturedViewAt()
599 mScroller.startScroll(startLeft, startTop, dx, dy, duration); in forceSettleCapturedViewAt()