Home
last modified time | relevance | path

Searched refs:startBound (Results 1 – 2 of 2) sorted by relevance

/frameworks/support/v4/java/android/support/v4/widget/
DSlidingPaneLayout.java360 final int startBound = isLayoutRtl ? (getWidth() - getPaddingRight()) : in updateObscuredViewsVisibility() local
388 startBound), child.getLeft()); in updateObscuredViewsVisibility()
390 final int clampedChildRight = Math.min((isLayoutRtl ? startBound : in updateObscuredViewsVisibility()
959 final int startBound = paddingStart + lpMargin; in onPanelDragged() local
961 mSlideOffset = (float) (newStart - startBound) / mSlideRange; in onPanelDragged()
1064 int startBound = getPaddingRight() + lp.rightMargin; in smoothSlideTo() local
1066 x = (int) (getWidth() - (startBound + slideOffset * mSlideRange + childWidth)); in smoothSlideTo()
1068 int startBound = getPaddingLeft() + lp.leftMargin; in smoothSlideTo() local
1069 x = (int) (startBound + slideOffset * mSlideRange); in smoothSlideTo()
1380 int startBound = getWidth() - in clampViewPositionHorizontal() local
[all …]
/frameworks/base/core/java/com/android/internal/widget/
DViewPager.java2128 final float startBound;
2132 startBound = startItem.offset * width;
2134 startBound = width * mFirstOffset;
2147 if (scrollStart < startBound) {
2149 final float over = startBound - scrollStart;
2153 clampedScrollStart = startBound;
2213 final float startBound = offset;
2214 if (first || scrollOffset >= startBound) {