Searched defs:edgeFlags (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/libs/androidfw/tests/
H A DInputPublisherAndConsumer_test.cpp136 const int32_t edgeFlags = AMOTION_EVENT_EDGE_FLAG_TOP; local
165 status = mPublisher->publishMotionEvent(seq, deviceId, source, action, flags, edgeFlags,
189 EXPECT_EQ(edgeFlags, motionEvent->getEdgeFlags());
/frameworks/base/services/input/
H A DInputListener.cpp72 int32_t edgeFlags, int32_t displayId, uint32_t pointerCount,
77 edgeFlags(edgeFlags), displayId(displayId), pointerCount(pointerCount),
90 edgeFlags(other.edgeFlags), displayId(other.displayId),
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, int32_t displayId, uint32_t pointerCount, const PointerProperties* pointerProperties, const PointerCoords* pointerCoords, float xPrecision, float yPrecision, nsecs_t downTime) argument
H A DInputListener.h90 int32_t edgeFlags; member in struct:android::NotifyMotionArgs
103 int32_t edgeFlags, int32_t displayId, uint32_t pointerCount,
H A DInputDispatcher.h510 int32_t edgeFlags; member in struct:android::InputDispatcher::MotionEntry
522 int32_t metaState, int32_t buttonState, int32_t edgeFlags,
H A DInputDispatcher.cpp868 "edgeFlags=0x%x, xPrecision=%f, yPrecision=%f, downTime=%lld",
873 entry->edgeFlags, entry->xPrecision, entry->yPrecision,
1994 motionEntry->edgeFlags, motionEntry->metaState, motionEntry->buttonState,
2313 originalMotionEntry->edgeFlags,
2431 "action=0x%x, flags=0x%x, metaState=0x%x, buttonState=0x%x, edgeFlags=0x%x, "
2435 args->edgeFlags, args->xPrecision, args->yPrecision, args->downTime);
2471 args->edgeFlags, args->metaState, args->buttonState, 0, 0,
2488 args->edgeFlags, args->xPrecision, args->yPrecision, args->downTime,
3866 int32_t edgeFlags, float xPrecision, float yPrecision,
3872 metaState(metaState), buttonState(buttonState), edgeFlags(edgeFlag
3863 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, int32_t displayId, uint32_t pointerCount, const PointerProperties* pointerProperties, const PointerCoords* pointerCoords) argument
[all...]
H A DInputReader.cpp5463 int32_t action, int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags,
5500 action, flags, metaState, buttonState, edgeFlags,
5462 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/include/androidfw/
H A DInputTransport.h83 int32_t edgeFlags; member in struct:android::InputMessage::Body::Motion
225 int32_t edgeFlags,
H A DInput.h344 inline void setEdgeFlags(int32_t edgeFlags) { mEdgeFlags = edgeFlags; } argument
506 int32_t edgeFlags,
/frameworks/base/libs/androidfw/
H A DInput.cpp287 int32_t edgeFlags,
302 mEdgeFlags = edgeFlags;
282 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
H A DInputTransport.cpp280 int32_t edgeFlags,
294 "action=0x%x, flags=0x%x, edgeFlags=0x%x, metaState=0x%x, buttonState=0x%x, "
299 deviceId, source, action, flags, edgeFlags, metaState, buttonState,
321 msg.body.motion.edgeFlags = edgeFlags;
901 msg->body.motion.edgeFlags,
274 publishMotionEvent( uint32_t seq, 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/java/android/inputmethodservice/
H A DKeyboard.java271 public int edgeFlags; field in class:Keyboard.Key
318 edgeFlags = parent.rowEdgeFlags;
377 edgeFlags = a.getInt(com.android.internal.R.styleable.Keyboard_Key_keyEdgeFlags, 0);
378 edgeFlags |= parent.rowEdgeFlags;
447 boolean leftEdge = (edgeFlags & EDGE_LEFT) > 0;
448 boolean rightEdge = (edgeFlags & EDGE_RIGHT) > 0;
449 boolean topEdge = (edgeFlags & EDGE_TOP) > 0;
450 boolean bottomEdge = (edgeFlags & EDGE_BOTTOM) > 0;
/frameworks/base/core/jni/
H A Dandroid_view_MotionEvent.cpp340 jint deviceId, jint source, jint action, jint flags, jint edgeFlags,
377 event->initialize(deviceId, source, action, flags, edgeFlags, metaState, buttonState,
488 jint nativePtr, jint edgeFlags) {
490 event->setEdgeFlags(edgeFlags);
338 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
487 android_view_MotionEvent_nativeSetEdgeFlags(JNIEnv* env, jclass clazz, jint nativePtr, jint edgeFlags) argument
/frameworks/base/core/java/android/view/
H A DMotionEvent.java1319 int deviceId, int source, int action, int flags, int edgeFlags,
1425 * @param edgeFlags A bitfield indicating which edges, if any, were touched by this
1434 int edgeFlags, int source, int flags) {
1437 deviceId, source, action, flags, edgeFlags, metaState, buttonState,
1465 * @param edgeFlags A bitfield indicating which edges, if any, were touched by this
1477 int edgeFlags, int source, int flags) {
1487 edgeFlags, source, flags);
1517 * @param edgeFlags A bitfield indicating which edges, if any, were touched by this
1522 float xPrecision, float yPrecision, int deviceId, int edgeFlags) {
1538 deviceId, InputDevice.SOURCE_UNKNOWN, action, 0, edgeFlags, metaStat
1318 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
1430 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
1474 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
1520 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
1580 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 286 milliseconds