Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DVerifiedMotionEvent.java58 private float mRawY; field in VerifiedMotionEvent
187 this.mRawY = rawY;
216 return mRawY; in getRawY()
286 && mRawY == that.mRawY in equals()
303 _hash = 31 * _hash + Float.hashCode(mRawY); in hashCode()
320 dest.writeFloat(mRawY); in writeToParcel()
349 this.mRawY = rawY; 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()
369 const float mRawY; variable