Home
last modified time | relevance | path

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

/cts/tests/tests/view/jni/
Dandroid_view_cts_AInputNativeTest.cpp93 jfloat rawX = env->CallFloatMethod(obj, gMotionEventMethodIds.getRawX, i); in nativeMotionEventTest() local
95 ASSERT(fabs(rawX - AMotionEvent_getRawX(event, i)) == 0.0f, "Point X:%f not same as %f", in nativeMotionEventTest()
96 AMotionEvent_getRawX(event, i), rawX); in nativeMotionEventTest()
/cts/libs/input/src/com/android/cts/input/
DInputEventMatchers.kt72 return (abs(event.rawX) - pt.x < EPSILON) && in withRawCoords()