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

/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DTouchExplorer.java483 final int pointerIdBits = (1 << pointerId);
490 sendMotionEvent(event, MotionEvent.ACTION_HOVER_MOVE, pointerIdBits, policyFlags);
533 final int pointerIdBits = (1 << pointerId);
534 mSendHoverEnterAndMoveDelayed.post(event, true, pointerIdBits,
552 final int pointerIdBits = (1 << pointerId);
563 sendMotionEvent(event, MotionEvent.ACTION_HOVER_MOVE, pointerIdBits,
603 sendMotionEvent(event, MotionEvent.ACTION_DOWN, pointerIdBits,
634 final int pointerIdBits = (1 << pointerId);
638 mSendHoverExitDelayed.post(event, pointerIdBits, policyFlags);
659 int pointerIdBits
933 sendMotionEvent(MotionEvent prototype, int action, int pointerIdBits, int policyFlags) argument
1156 post(MotionEvent event, boolean touchExplorationInProgress, int pointerIdBits, int policyFlags) argument
1234 post(MotionEvent prototype, int pointerIdBits, int policyFlags) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java2588 newTouchTarget.pointerIdBits |= idBitsToAssign;
2628 newTouchTarget.pointerIdBits |= idBitsToAssign;
2651 target.child, target.pointerIdBits)) {
2781 dispatchTransformedTouchEvent(event, true, target.child, target.pointerIdBits);
2808 private TouchTarget addTouchTarget(@NonNull View child, int pointerIdBits) { argument
2809 final TouchTarget target = TouchTarget.obtain(child, pointerIdBits);
2818 private void removePointersFromTouchTargets(int pointerIdBits) { argument
2823 if ((target.pointerIdBits & pointerIdBits) != 0) {
2824 target.pointerIdBits
8124 public int pointerIdBits; field in class:ViewGroup.TouchTarget
8132 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 621 milliseconds