Searched refs:edgeFlags (Results 1 - 21 of 21) sorted by relevance

/frameworks/native/services/inputflinger/
H A DInputListener.cpp72 int32_t buttonState, int32_t edgeFlags, int32_t displayId, uint32_t pointerCount,
78 edgeFlags(edgeFlags), displayId(displayId), pointerCount(pointerCount),
91 edgeFlags(other.edgeFlags), displayId(other.displayId), pointerCount(other.pointerCount),
69 NotifyMotionArgs(nsecs_t eventTime, int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t action, int32_t actionButton, 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.h91 int32_t edgeFlags; member in struct:android::NotifyMotionArgs
105 int32_t edgeFlags, int32_t displayId, uint32_t pointerCount,
H A DInputDispatcher.cpp890 "edgeFlags=0x%x, xPrecision=%f, yPrecision=%f, downTime=%lld",
895 entry->edgeFlags, entry->xPrecision, entry->yPrecision,
2028 dispatchEntry->resolvedFlags, motionEntry->edgeFlags,
2355 originalMotionEntry->edgeFlags,
2487 "edgeFlags=0x%x, xPrecision=%f, yPrecision=%f, downTime=%lld",
2490 args->edgeFlags, args->xPrecision, args->yPrecision, args->downTime);
2527 args->flags, args->edgeFlags, args->metaState, args->buttonState,
2545 args->edgeFlags, args->xPrecision, args->yPrecision, args->downTime,
3967 int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags,
3976 edgeFlags(edgeFlag
3965 MotionEntry(nsecs_t eventTime, int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t action, int32_t actionButton, 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, float xOffset, float yOffset) argument
[all...]
H A DInputDispatcher.h517 int32_t edgeFlags; member in struct:android::InputDispatcher::MotionEntry
529 int32_t metaState, int32_t buttonState, int32_t edgeFlags,
H A DInputReader.h1840 int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags,
H A DInputReader.cpp6433 int32_t metaState, int32_t buttonState, int32_t edgeFlags,
6470 action, actionButton, flags, metaState, buttonState, edgeFlags,
6431 dispatchMotion(nsecs_t when, uint32_t policyFlags, uint32_t source, int32_t action, int32_t actionButton, 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/native/libs/input/tests/
H A DInputPublisherAndConsumer_test.cpp140 const int32_t edgeFlags = AMOTION_EVENT_EDGE_FLAG_TOP; local
170 flags, edgeFlags, metaState, buttonState, xOffset, yOffset, xPrecision, yPrecision,
194 EXPECT_EQ(edgeFlags, motionEvent->getEdgeFlags());
H A DStructLayout_test.cpp60 CHECK_OFFSET(InputMessage::Body::Motion, edgeFlags, 48);
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java272 public int edgeFlags; field in class:Keyboard.Key
319 edgeFlags = parent.rowEdgeFlags;
378 edgeFlags = a.getInt(com.android.internal.R.styleable.Keyboard_Key_keyEdgeFlags, 0);
379 edgeFlags |= parent.rowEdgeFlags;
459 boolean leftEdge = (edgeFlags & EDGE_LEFT) > 0;
460 boolean rightEdge = (edgeFlags & EDGE_RIGHT) > 0;
461 boolean topEdge = (edgeFlags & EDGE_TOP) > 0;
462 boolean bottomEdge = (edgeFlags & EDGE_BOTTOM) > 0;
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewOnGenericMotionEventTest.java127 int edgeFlags = 0;
131 edgeFlags, inputDevice, flags);
/frameworks/base/core/java/android/view/
H A DMotionEvent.java1469 int deviceId, int source, int action, int flags, int edgeFlags,
1619 * @param edgeFlags A bitfield indicating which edges, if any, were touched by this
1628 int edgeFlags, int source, int flags) {
1631 deviceId, source, action, flags, edgeFlags, metaState, buttonState,
1659 * @param edgeFlags A bitfield indicating which edges, if any, were touched by this
1671 int edgeFlags, int source, int flags) {
1681 edgeFlags, source, flags);
1711 * @param edgeFlags A bitfield indicating which edges, if any, were touched by this
1716 float xPrecision, float yPrecision, int deviceId, int edgeFlags) {
1732 deviceId, InputDevice.SOURCE_UNKNOWN, action, 0, edgeFlags, metaStat
1468 nativeInitialize(long 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
1624 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
1668 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
1714 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
1774 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...]
/frameworks/native/include/input/
H A DInput.h393 inline void setEdgeFlags(int32_t edgeFlags) { mEdgeFlags = edgeFlags; } argument
562 int32_t edgeFlags,
H A DInputTransport.h93 int32_t edgeFlags; member in struct:android::InputMessage::Body::Motion
241 int32_t edgeFlags,
/frameworks/native/libs/input/
H A DInputTransport.cpp292 int32_t edgeFlags,
306 "action=0x%x, actionButton=0x%08x, flags=0x%x, edgeFlags=0x%x, "
311 deviceId, source, action, actionButton, flags, edgeFlags, metaState, buttonState,
335 msg.body.motion.edgeFlags = edgeFlags;
943 msg->body.motion.edgeFlags,
284 publishMotionEvent( uint32_t seq, int32_t deviceId, int32_t source, int32_t displayId, int32_t action, int32_t actionButton, 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, uint32_t pointerCount, const PointerProperties* pointerProperties, const PointerCoords* pointerCoords) argument
H A DInput.cpp221 int32_t edgeFlags,
237 mEdgeFlags = edgeFlags;
215 initialize( int32_t deviceId, int32_t source, int32_t action, int32_t actionButton, 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/support/core-ui/java/android/support/v4/widget/
H A DViewDragHelper.java207 * @param edgeFlags A combination of edge flags describing the edge(s) currently touched
214 public void onEdgeTouched(int edgeFlags, int pointerId) {} argument
222 * @param edgeFlags A combination of edge flags describing the edge(s) locked
225 public boolean onEdgeLock(int edgeFlags) { argument
233 * @param edgeFlags A combination of edge flags describing the edge(s) dragged
240 public void onEdgeDragStarted(int edgeFlags, int pointerId) {} argument
432 * @param edgeFlags Combination of edge flags describing the edges to watch
438 public void setEdgeTrackingEnabled(int edgeFlags) { argument
439 mTrackingEdges = edgeFlags;
H A DDrawerLayout.java2133 public void onEdgeTouched(int edgeFlags, int pointerId) { argument
2165 public boolean onEdgeLock(int edgeFlags) { argument
2177 public void onEdgeDragStarted(int edgeFlags, int pointerId) { argument
2179 if ((edgeFlags & ViewDragHelper.EDGE_LEFT) == ViewDragHelper.EDGE_LEFT) {
H A DSlidingPaneLayout.java1376 public void onEdgeDragStarted(int edgeFlags, int pointerId) { argument
/frameworks/base/core/jni/
H A Dandroid_view_MotionEvent.cpp336 jint deviceId, jint source, jint action, jint flags, jint edgeFlags,
375 event->initialize(deviceId, source, action, 0, flags, edgeFlags, metaState, buttonState,
641 static void android_view_MotionEvent_nativeSetEdgeFlags(jlong nativePtr, jint edgeFlags) { argument
643 event->setEdgeFlags(edgeFlags);
334 android_view_MotionEvent_nativeInitialize(JNIEnv* env, jclass clazz, jlong 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/support/wear/src/android/support/wear/widget/drawer/
H A DWearableDrawerLayout.java1049 public void onEdgeDragStarted(int edgeFlags, int pointerId) { argument
1051 && edgeFlags == ViewDragHelper.EDGE_TOP
1122 public void onEdgeDragStarted(int edgeFlags, int pointerId) { argument
1124 && edgeFlags == ViewDragHelper.EDGE_BOTTOM
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp2240 ASSERT_EQ(0, args.edgeFlags);
2259 ASSERT_EQ(0, args.edgeFlags);
2281 ASSERT_EQ(0, args.edgeFlags);
2300 ASSERT_EQ(0, args.edgeFlags);
3362 ASSERT_EQ(0, motionArgs.edgeFlags);
3386 ASSERT_EQ(0, motionArgs.edgeFlags);
3409 ASSERT_EQ(0, motionArgs.edgeFlags);
3460 ASSERT_EQ(0, motionArgs.edgeFlags);
3483 ASSERT_EQ(0, motionArgs.edgeFlags);
3529 ASSERT_EQ(0, motionArgs.edgeFlags);
[all...]

Completed in 444 milliseconds