Searched refs:mMaxX (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DFlingScroller.java37 private int mMinX, mMinY, mMaxX, mMaxY; field in class:FlingScroller
82 mMaxX = maxX;
118 if (mCosAngle > 0 && mStartX <= mMaxX) {
119 r = Math.min(r, mMaxX);
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DScroller.java44 private int mMaxX; field in class:Scroller
279 // Pin to mMinX <= mCurrX <= mMaxX
280 mCurrX = Math.min(mCurrX, mMaxX);
408 mMaxX = maxX;
413 // Pin to mMinX <= mFinalX <= mMaxX
414 mFinalX = Math.min(mFinalX, mMaxX);

Completed in 8 milliseconds