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

/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DTouchExplorer.java464 final int pointerIdBits = (1 << pointerId);
471 sendMotionEvent(event, MotionEvent.ACTION_HOVER_MOVE, pointerIdBits, policyFlags);
514 final int pointerIdBits = (1 << pointerId);
515 mSendHoverEnterAndMoveDelayed.post(event, true, pointerIdBits,
533 final int pointerIdBits = (1 << pointerId);
544 sendMotionEvent(event, MotionEvent.ACTION_HOVER_MOVE, pointerIdBits,
584 sendMotionEvent(event, MotionEvent.ACTION_DOWN, pointerIdBits,
615 final int pointerIdBits = (1 << pointerId);
619 mSendHoverExitDelayed.post(event, pointerIdBits, policyFlags);
640 int pointerIdBits
918 sendMotionEvent(MotionEvent prototype, int action, int pointerIdBits, int policyFlags) argument
1139 post(MotionEvent event, boolean touchExplorationInProgress, int pointerIdBits, int policyFlags) argument
1217 post(MotionEvent prototype, int pointerIdBits, int policyFlags) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java2657 newTouchTarget.pointerIdBits |= idBitsToAssign;
2697 newTouchTarget.pointerIdBits |= idBitsToAssign;
2720 target.child, target.pointerIdBits)) {
2850 dispatchTransformedTouchEvent(event, true, target.child, target.pointerIdBits);
2877 private TouchTarget addTouchTarget(@NonNull View child, int pointerIdBits) { argument
2878 final TouchTarget target = TouchTarget.obtain(child, pointerIdBits);
2887 private void removePointersFromTouchTargets(int pointerIdBits) { argument
2892 if ((target.pointerIdBits & pointerIdBits) != 0) {
2893 target.pointerIdBits
8349 public int pointerIdBits; field in class:ViewGroup.TouchTarget
8357 obtain(@onNull View child, int pointerIdBits) argument
[all...]
/frameworks/native/services/inputflinger/
H A DInputDispatcher.cpp197 BitSet32 pointerIdBits; local
205 if (pointerIdBits.hasBit(id)) {
209 pointerIdBits.markBit(id);

Completed in 95 milliseconds