Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DVerifiedMotionEvent.java52 private float mRawX; field in VerifiedMotionEvent
186 this.mRawX = rawX;
206 return mRawX; in getRawX()
285 && mRawX == that.mRawX in equals()
302 _hash = 31 * _hash + Float.hashCode(mRawX); in hashCode()
319 dest.writeFloat(mRawX); in writeToParcel()
348 this.mRawX = rawX; in VerifiedMotionEvent()
/frameworks/native/services/inputflinger/tests/
DTestEventMatchers.h341 : mPointerIndex(pointerIndex), mRawX(rawX), mRawY(rawY) {} in WithRawCoordsMatcher()
350 mRawX == event.getRawX(mPointerIndex) && mRawY == event.getRawY(mPointerIndex); in MatchAndExplain()
352 *os << "expected raw coords (" << mRawX << ", " << mRawY << ") at pointer index " in MatchAndExplain()
360 *os << "with raw coords (" << mRawX << ", " << mRawY << ") at pointer index " in DescribeTo()
368 const float mRawX; variable