Searched defs:yPrecision (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/include/ui/
H A DInputTransport.h145 float yPrecision; member in struct:android::InputMessage::__anon164::__anon166
229 float yPrecision,
/frameworks/base/libs/ui/tests/
H A DInputPublisherAndConsumer_test.cpp163 const float yPrecision = 0.5; local
195 metaState, buttonState, xOffset, yOffset, xPrecision, yPrecision,
246 EXPECT_EQ(yPrecision, motionEvent->getYPrecision());
/frameworks/base/services/input/
H A DInputListener.cpp74 float xPrecision, float yPrecision, nsecs_t downTime) :
78 xPrecision(xPrecision), yPrecision(yPrecision), downTime(downTime) {
91 xPrecision(other.xPrecision), yPrecision(other.yPrecision), downTime(other.downTime) {
69 NotifyMotionArgs(nsecs_t eventTime, int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t action, int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags, uint32_t pointerCount, const PointerProperties* pointerProperties, const PointerCoords* pointerCoords, float xPrecision, float yPrecision, nsecs_t downTime) argument
H A DInputListener.h95 float yPrecision; member in struct:android::NotifyMotionArgs
104 float xPrecision, float yPrecision, nsecs_t downTime);
H A DInputDispatcher.h519 float yPrecision; member in struct:android::InputDispatcher::MotionEntry
531 float xPrecision, float yPrecision,
775 float yPrecision; member in struct:android::InputDispatcher::InputState::MotionMemento
H A DInputDispatcher.cpp938 entry->xPrecision, entry->yPrecision, entry->downTime,
980 "edgeFlags=0x%x, xPrecision=%f, yPrecision=%f, downTime=%lld",
985 entry->edgeFlags, entry->xPrecision, entry->yPrecision,
2228 motionEntry->xPrecision, motionEntry->yPrecision,
2604 originalMotionEntry->yPrecision,
2728 "xPrecision=%f, yPrecision=%f, downTime=%lld",
2731 args->edgeFlags, args->xPrecision, args->yPrecision, args->downTime);
2768 args->xPrecision, args->yPrecision,
2941 args->edgeFlags, args->xPrecision, args->yPrecision, args->downTime,
4209 int32_t edgeFlags, float xPrecision, float yPrecision,
4206 MotionEntry(nsecs_t eventTime, int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t action, int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags, float xPrecision, float yPrecision, nsecs_t downTime, uint32_t pointerCount, const PointerProperties* pointerProperties, const PointerCoords* pointerCoords) argument
[all...]
H A DInputReader.cpp5150 int32_t changedId, float xPrecision, float yPrecision, nsecs_t downTime) {
5185 pointerCount, pointerProperties, pointerCoords, xPrecision, yPrecision, downTime);
5146 dispatchMotion(nsecs_t when, uint32_t policyFlags, uint32_t source, int32_t action, int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags, const PointerProperties* properties, const PointerCoords* coords, const uint32_t* idToIndex, BitSet32 idBits, int32_t changedId, float xPrecision, float yPrecision, nsecs_t downTime) argument
/frameworks/base/libs/ui/
H A DInputTransport.cpp375 float yPrecision,
385 "xPrecision=%f, yPrecision=%f, downTime=%lld, eventTime=%lld, "
389 xOffset, yOffset, xPrecision, yPrecision, downTime, eventTime, pointerCount);
411 mSharedMessage->motion.yPrecision = yPrecision;
707 mSharedMessage->motion.yPrecision,
364 publishMotionEvent( int32_t deviceId, int32_t source, int32_t action, int32_t flags, int32_t edgeFlags, int32_t metaState, int32_t buttonState, float xOffset, float yOffset, float xPrecision, float yPrecision, nsecs_t downTime, nsecs_t eventTime, size_t pointerCount, const PointerProperties* pointerProperties, const PointerCoords* pointerCoords) argument
H A DInput.cpp400 float yPrecision,
415 mYPrecision = yPrecision;
389 initialize( int32_t deviceId, int32_t source, int32_t action, int32_t flags, int32_t edgeFlags, int32_t metaState, int32_t buttonState, float xOffset, float yOffset, float xPrecision, float yPrecision, nsecs_t downTime, nsecs_t eventTime, size_t pointerCount, const PointerProperties* pointerProperties, const PointerCoords* pointerCoords) argument
/frameworks/base/core/jni/
H A Dandroid_view_MotionEvent.cpp341 jfloat xOffset, jfloat yOffset, jfloat xPrecision, jfloat yPrecision,
377 xOffset, yOffset, xPrecision, yPrecision,
337 android_view_MotionEvent_nativeInitialize(JNIEnv* env, jclass clazz, jint nativePtr, jint deviceId, jint source, jint action, jint flags, jint edgeFlags, jint metaState, jint buttonState, jfloat xOffset, jfloat yOffset, jfloat xPrecision, jfloat yPrecision, jlong downTimeNanos, jlong eventTimeNanos, jint pointerCount, jobjectArray pointerPropertiesObjArray, jobjectArray pointerCoordsObjArray) argument
/frameworks/base/core/java/android/view/
H A DMotionEvent.java1324 float xOffset, float yOffset, float xPrecision, float yPrecision,
1425 * @param yPrecision The precision of the Y coordinate being reported.
1437 float xPrecision, float yPrecision, int deviceId,
1442 0, 0, xPrecision, yPrecision,
1465 * @param yPrecision The precision of the Y coordinate being reported.
1480 int metaState, float xPrecision, float yPrecision, int deviceId,
1490 pointerCoords, metaState, 0, xPrecision, yPrecision, deviceId,
1517 * @param yPrecision The precision of the Y coordinate being reported.
1526 float xPrecision, float yPrecision, int deviceId, int edgeFlags) {
1543 0, 0, xPrecision, yPrecision,
1321 nativeInitialize(int nativePtr, int deviceId, int source, int action, int flags, int edgeFlags, int metaState, int buttonState, float xOffset, float yOffset, float xPrecision, float yPrecision, long downTimeNanos, long eventTimeNanos, int pointerCount, PointerProperties[] pointerIds, PointerCoords[] pointerCoords) argument
1434 obtain(long downTime, long eventTime, int action, int pointerCount, PointerProperties[] pointerProperties, PointerCoords[] pointerCoords, int metaState, int buttonState, float xPrecision, float yPrecision, int deviceId, int edgeFlags, int source, int flags) argument
1478 obtain(long downTime, long eventTime, int action, int pointerCount, int[] pointerIds, PointerCoords[] pointerCoords, int metaState, float xPrecision, float yPrecision, int deviceId, int edgeFlags, int source, int flags) argument
1524 obtain(long downTime, long eventTime, int action, float x, float y, float pressure, float size, int metaState, float xPrecision, float yPrecision, int deviceId, int edgeFlags) argument
1584 obtain(long downTime, long eventTime, int action, int pointerCount, float x, float y, float pressure, float size, int metaState, float xPrecision, float yPrecision, int deviceId, int edgeFlags) argument
[all...]

Completed in 276 milliseconds