HomeSort by relevance Sort by last modified time
    Searched refs:mMaxX (Results 1 - 5 of 5) sorted by null

  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
FlingScroller.java 37 private int mMinX, mMinY, mMaxX, mMaxY;
82 mMaxX = maxX;
118 if (mCosAngle > 0 && mStartX <= mMaxX) {
119 r = Math.min(r, mMaxX);
  /development/samples/ApiDemos/src/com/example/android/apis/os/
Sensors.java 67 private float mMaxX;
97 mMaxX = w;
99 mMaxX = w-50;
101 mLastX = mMaxX;
114 if (mLastX >= mMaxX) {
118 final float maxx = mMaxX;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Scroller.java 44 private int mMaxX;
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);
  /frameworks/base/core/java/android/widget/
Scroller.java 72 private int mMaxX;
342 // Pin to mMinX <= mCurrX <= mMaxX
343 mCurrX = Math.min(mCurrX, mMaxX);
471 mMaxX = maxX;
476 // Pin to mMinX <= mFinalX <= mMaxX
477 mFinalX = Math.min(mFinalX, mMaxX);
  /frameworks/base/services/input/tests/
InputReader_test.cpp 50 float mMinX, mMinY, mMaxX, mMaxY;
59 mHaveBounds(false), mMinX(0), mMinY(0), mMaxX(0), mMaxY(0), mX(0), mY(0),
67 mMaxX = maxX;
93 *outMaxX = mMaxX;
101 if (mX > mMaxX) mX = mMaxX;
    [all...]

Completed in 242 milliseconds