Searched refs:pointerIdBits (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DTouchExplorer.java475 final int pointerIdBits = (1 << pointerId);
482 sendMotionEvent(event, MotionEvent.ACTION_HOVER_MOVE, pointerIdBits, policyFlags);
525 final int pointerIdBits = (1 << pointerId);
526 mSendHoverEnterAndMoveDelayed.post(event, true, pointerIdBits,
544 final int pointerIdBits = (1 << pointerId);
555 sendMotionEvent(event, MotionEvent.ACTION_HOVER_MOVE, pointerIdBits,
595 sendMotionEvent(event, MotionEvent.ACTION_DOWN, pointerIdBits,
626 final int pointerIdBits = (1 << pointerId);
630 mSendHoverExitDelayed.post(event, pointerIdBits, policyFlags);
651 int pointerIdBits
925 sendMotionEvent(MotionEvent prototype, int action, int pointerIdBits, int policyFlags) argument
1143 post(MotionEvent event, boolean touchExplorationInProgress, int pointerIdBits, int policyFlags) argument
1221 post(MotionEvent prototype, int pointerIdBits, int policyFlags) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java2259 newTouchTarget.pointerIdBits |= idBitsToAssign;
2299 newTouchTarget.pointerIdBits |= idBitsToAssign;
2322 target.child, target.pointerIdBits)) {
2452 dispatchTransformedTouchEvent(event, true, target.child, target.pointerIdBits);
2479 private TouchTarget addTouchTarget(@NonNull View child, int pointerIdBits) { argument
2480 final TouchTarget target = TouchTarget.obtain(child, pointerIdBits);
2489 private void removePointersFromTouchTargets(int pointerIdBits) { argument
2494 if ((target.pointerIdBits & pointerIdBits) != 0) {
2495 target.pointerIdBits
7601 public int pointerIdBits; field in class:ViewGroup.TouchTarget
7609 obtain(@onNull View child, int pointerIdBits) argument
[all...]
/frameworks/native/services/inputflinger/
H A DInputDispatcher.cpp158 BitSet32 pointerIdBits; local
166 if (pointerIdBits.hasBit(id)) {
170 pointerIdBits.markBit(id);

Completed in 225 milliseconds