Home | History | Annotate | Download | only in accessibility

Lines Matching refs:pointerIdBits

386                         final int pointerIdBits = (1 << pointerId);
387 mSendHoverEnterDelayed.post(event, pointerIdBits, policyFlags);
397 final int pointerIdBits = (1 << pointerId);
441 pointerIdBits, policyFlags);
452 sendMotionEvent(event, MotionEvent.ACTION_HOVER_MOVE, pointerIdBits,
493 sendMotionEvent(event, MotionEvent.ACTION_DOWN, pointerIdBits,
530 final int pointerIdBits = (1 << pointerId);
542 mSendHoverExitDelayed.post(event, pointerIdBits, policyFlags);
567 final int pointerIdBits = (1 << mDraggingPointerId);
577 sendMotionEvent(event, MotionEvent.ACTION_UP, pointerIdBits, policyFlags);
611 sendMotionEvent(event, MotionEvent.ACTION_MOVE, pointerIdBits,
618 sendMotionEvent(event, MotionEvent.ACTION_UP, pointerIdBits,
627 sendMotionEvent(event, MotionEvent.ACTION_UP, pointerIdBits,
639 sendMotionEvent(event, MotionEvent.ACTION_UP, pointerIdBits, policyFlags);
760 int pointerIdBits = 0;
767 pointerIdBits |= (1 << pointerId);
782 pointerIdBits |= (1 << pointerId);
784 sendMotionEvent(prototype, action, pointerIdBits, policyFlags);
797 final int pointerIdBits = event.getPointerIdBits();
799 sendMotionEvent(event, MotionEvent.ACTION_HOVER_EXIT, pointerIdBits, policyFlags);
812 final int pointerIdBits = event.getPointerIdBits();
814 sendMotionEvent(event, MotionEvent.ACTION_HOVER_ENTER, pointerIdBits, policyFlags);
827 int pointerIdBits = 0;
835 pointerIdBits |= (1 << pointerId);
837 sendMotionEvent(prototype, action, pointerIdBits, policyFlags);
875 int pointerIdBits = 0;
880 pointerIdBits |= (1 << pointerId);
883 sendMotionEvent(prototype, prototype.getAction(), pointerIdBits, policyFlags);
895 final int pointerIdBits = (1 << pointerId);
896 sendMotionEvent(prototype, MotionEvent.ACTION_DOWN, pointerIdBits, policyFlags);
897 sendMotionEvent(prototype, MotionEvent.ACTION_UP, pointerIdBits, policyFlags);
905 * @param pointerIdBits The bits of the pointers to send.
908 private void sendMotionEvent(MotionEvent prototype, int action, int pointerIdBits,
913 if (pointerIdBits == ALL_POINTER_ID_BITS) {
916 event = prototype.split(pointerIdBits);
1407 public void post(MotionEvent prototype, int pointerIdBits, int policyFlags) {
1410 mPointerIdBits = pointerIdBits;