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

/frameworks/base/include/ui/
H A DInputTransport.h140 int32_t edgeFlags; member in struct:android::InputMessage::__anon164::__anon166
223 int32_t edgeFlags,
H A DInput.h365 inline void setEdgeFlags(int32_t edgeFlags) { mEdgeFlags = edgeFlags; } argument
527 int32_t edgeFlags,
/frameworks/base/libs/ui/tests/
H A DInputPublisherAndConsumer_test.cpp157 const int32_t edgeFlags = AMOTION_EVENT_EDGE_FLAG_TOP; local
194 status = mPublisher->publishMotionEvent(deviceId, source, action, flags, edgeFlags,
242 EXPECT_EQ(edgeFlags, motionEvent->getEdgeFlags());
/frameworks/base/services/input/
H A DInputListener.cpp72 int32_t edgeFlags, uint32_t pointerCount,
77 edgeFlags(edgeFlags), pointerCount(pointerCount),
90 edgeFlags(other.edgeFlags), pointerCount(other.pointerCount),
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.h90 int32_t edgeFlags; member in struct:android::NotifyMotionArgs
102 int32_t edgeFlags, uint32_t pointerCount,
H A DInputDispatcher.h517 int32_t edgeFlags; member in struct:android::InputDispatcher::MotionEntry
530 int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags,
H A DInputDispatcher.cpp937 entry->metaState, entry->buttonState, entry->edgeFlags,
980 "edgeFlags=0x%x, xPrecision=%f, yPrecision=%f, downTime=%lld",
985 entry->edgeFlags, entry->xPrecision, entry->yPrecision,
2241 motionEntry->edgeFlags, motionEntry->metaState, motionEntry->buttonState,
2620 originalMotionEntry->edgeFlags,
2745 "action=0x%x, flags=0x%x, metaState=0x%x, buttonState=0x%x, edgeFlags=0x%x, "
2749 args->edgeFlags, args->xPrecision, args->yPrecision, args->downTime);
2785 args->edgeFlags, args->metaState, args->buttonState, 0, 0,
2959 args->edgeFlags, args->xPrecision, args->yPrecision, args->downTime,
4227 int32_t edgeFlags, floa
4224 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.cpp5147 int32_t action, int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags,
5184 action, flags, metaState, buttonState, edgeFlags,
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.cpp369 int32_t edgeFlags,
383 "action=0x%x, flags=0x%x, edgeFlags=0x%x, metaState=0x%x, buttonState=0x%x, "
388 deviceId, source, action, flags, edgeFlags, metaState, buttonState,
405 mSharedMessage->motion.edgeFlags = edgeFlags;
701 mSharedMessage->motion.edgeFlags,
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.cpp394 int32_t edgeFlags,
409 mEdgeFlags = edgeFlags;
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/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.cpp339 jint deviceId, jint source, jint action, jint flags, jint edgeFlags,
376 event->initialize(deviceId, source, action, flags, edgeFlags, metaState, buttonState,
487 jint nativePtr, jint edgeFlags) {
489 event->setEdgeFlags(edgeFlags);
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
486 android_view_MotionEvent_nativeSetEdgeFlags(JNIEnv* env, jclass clazz, jint nativePtr, jint edgeFlags) argument
/frameworks/base/core/java/android/view/
H A DMotionEvent.java1322 int deviceId, int source, int action, int flags, int edgeFlags,
1429 * @param edgeFlags A bitfield indicating which edges, if any, were touched by this
1438 int edgeFlags, int source, int flags) {
1441 deviceId, source, action, flags, edgeFlags, metaState, buttonState,
1469 * @param edgeFlags A bitfield indicating which edges, if any, were touched by this
1481 int edgeFlags, int source, int flags) {
1491 edgeFlags, source, flags);
1521 * @param edgeFlags A bitfield indicating which edges, if any, were touched by this
1526 float xPrecision, float yPrecision, int deviceId, int edgeFlags) {
1542 deviceId, InputDevice.SOURCE_UNKNOWN, action, 0, edgeFlags, metaStat
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 2565 milliseconds