Searched refs:leftBound (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/media/libstagefright/codecs/avc/common/src/
H A Dfmo.cpp132 int leftBound, topBound, rightBound, bottomBound; local
146 leftBound = x;
162 if (xDir == -1 && x == leftBound)
164 leftBound = AVC_MAX(leftBound - 1, 0);
165 x = leftBound;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_slice_group_map.c305 i32 x, y, xDir, yDir, leftBound, topBound, rightBound, bottomBound; local
323 leftBound = x;
340 if (xDir == -1 && x == leftBound)
342 leftBound = MAX(leftBound - 1, 0);
343 x = leftBound;
/frameworks/support/v4/java/android/support/v4/widget/
H A DSlidingPaneLayout.java348 final int leftBound = getPaddingLeft();
373 final int clampedChildLeft = Math.max(leftBound, child.getLeft());
910 final int leftBound = getPaddingLeft() + lp.leftMargin;
912 mSlideOffset = (float) (newLeft - leftBound) / mSlideRange;
1008 final int leftBound = getPaddingLeft() + lp.leftMargin;
1009 int x = (int) (leftBound + slideOffset * mSlideRange);
1234 final int leftBound = getPaddingLeft() + lp.leftMargin;
1235 final int rightBound = leftBound + mSlideRange;
1237 final int newLeft = Math.min(Math.max(left, leftBound), rightBound);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java2066 float leftBound = width * mFirstOffset;
2075 leftBound = firstItem.offset * width;
2082 if (scrollX < leftBound) {
2084 float over = leftBound - scrollX;
2087 scrollX = leftBound;
2130 final float leftBound = offset;
2132 if (first || scrollOffset >= leftBound) {
2340 float leftBound = width * mFirstOffset;
2346 leftBound = firstItem.offset * width;
2352 if (scrollX < leftBound) {
[all...]

Completed in 399 milliseconds