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

/frameworks/base/core/java/android/widget/
H A DScroller.java74 private int mMaxX; field in class:Scroller
331 // Pin to mMinX <= mCurrX <= mMaxX
332 mCurrX = Math.min(mCurrX, mMaxX);
460 mMaxX = maxX;
465 // Pin to mMinX <= mFinalX <= mMaxX
466 mFinalX = Math.min(mFinalX, mMaxX);
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp50 float mMinX, mMinY, mMaxX, mMaxY; member in class:android::FakePointerController
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;

Completed in 83 milliseconds