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

/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DTouchExplorer.java444 final int pointerIdBits = (1 << pointerId);
445 mSendHoverEnterAndMoveDelayed.post(event, true, pointerIdBits,
464 final int pointerIdBits = (1 << pointerId);
515 pointerIdBits, policyFlags);
537 sendMotionEvent(event, MotionEvent.ACTION_HOVER_MOVE, pointerIdBits,
584 sendMotionEvent(event, MotionEvent.ACTION_DOWN, pointerIdBits,
622 final int pointerIdBits = (1 << pointerId);
629 mSendHoverExitDelayed.post(event, pointerIdBits, policyFlags);
653 final int pointerIdBits = (1 << mDraggingPointerId);
664 sendMotionEvent(event, MotionEvent.ACTION_UP, pointerIdBits, policyFlag
970 sendMotionEvent(MotionEvent prototype, int action, int pointerIdBits, int policyFlags) argument
1365 post(MotionEvent event, boolean touchExplorationInProgress, int pointerIdBits, int policyFlags) argument
1443 post(MotionEvent prototype, int pointerIdBits, int policyFlags) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java2044 newTouchTarget.pointerIdBits |= idBitsToAssign;
2084 newTouchTarget.pointerIdBits |= idBitsToAssign;
2107 target.child, target.pointerIdBits)) {
2225 dispatchTransformedTouchEvent(event, true, target.child, target.pointerIdBits);
2252 private TouchTarget addTouchTarget(View child, int pointerIdBits) { argument
2253 TouchTarget target = TouchTarget.obtain(child, pointerIdBits);
2262 private void removePointersFromTouchTargets(int pointerIdBits) { argument
2267 if ((target.pointerIdBits & pointerIdBits) != 0) {
2268 target.pointerIdBits
7020 public int pointerIdBits; field in class:ViewGroup.TouchTarget
7028 obtain(View child, int pointerIdBits) argument
[all...]
/frameworks/native/services/inputflinger/
H A DInputDispatcher.cpp155 BitSet32 pointerIdBits; local
163 if (pointerIdBits.hasBit(id)) {
167 pointerIdBits.markBit(id);

Completed in 376 milliseconds