Home
last modified time | relevance | path

Searched refs:actionIndex (Results 1 – 4 of 4) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
DMoreKeysKeyboardAccessibilityDelegate.java68 final int actionIndex = event.getActionIndex(); in onHoverEnter() local
69 final int x = (int)event.getX(actionIndex); in onHoverEnter()
70 final int y = (int)event.getY(actionIndex); in onHoverEnter()
71 final int pointerId = event.getPointerId(actionIndex); in onHoverEnter()
79 final int actionIndex = event.getActionIndex(); in onHoverMove() local
80 final int x = (int)event.getX(actionIndex); in onHoverMove()
81 final int y = (int)event.getY(actionIndex); in onHoverMove()
82 final int pointerId = event.getPointerId(actionIndex); in onHoverMove()
97 final int actionIndex = event.getActionIndex(); in onHoverExit() local
98 final int x = (int)event.getX(actionIndex); in onHoverExit()
[all …]
DKeyboardAccessibilityDelegate.java161 final int actionIndex = event.getActionIndex(); in getHoverKeyOf() local
162 final int x = (int)event.getX(actionIndex); in getHoverKeyOf()
163 final int y = (int)event.getY(actionIndex); in getHoverKeyOf()
/packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
DGlowPadView.java828 int actionIndex = event.getActionIndex(); in handleDown() local
829 float eventX = event.getX(actionIndex); in handleDown()
830 float eventY = event.getY(actionIndex); in handleDown()
835 mPointerId = event.getPointerId(actionIndex); in handleDown()
842 int actionIndex = event.getActionIndex(); in handleUp() local
843 if (event.getPointerId(actionIndex) == mPointerId) { in handleUp()
844 switchToState(STATE_FINISH, event.getX(actionIndex), event.getY(actionIndex)); in handleUp()
858 int actionIndex = event.findPointerIndex(mPointerId); in handleCancel() local
859 actionIndex = actionIndex == -1 ? 0 : actionIndex; in handleCancel()
860 switchToState(STATE_FINISH, event.getX(actionIndex), event.getY(actionIndex)); in handleCancel()
[all …]
/packages/apps/Dialer/src/com/android/dialer/widget/
DViewDragHelper.java1009 final int actionIndex = MotionEventCompat.getActionIndex(ev);
1044 final int pointerId = MotionEventCompat.getPointerId(ev, actionIndex);
1045 final float x = MotionEventCompat.getX(ev, actionIndex);
1046 final float y = MotionEventCompat.getY(ev, actionIndex);
1093 final int pointerId = MotionEventCompat.getPointerId(ev, actionIndex);
1116 final int actionIndex = MotionEventCompat.getActionIndex(ev);
1151 final int pointerId = MotionEventCompat.getPointerId(ev, actionIndex);
1152 final float x = MotionEventCompat.getX(ev, actionIndex);
1153 final float y = MotionEventCompat.getY(ev, actionIndex);
1222 final int pointerId = MotionEventCompat.getPointerId(ev, actionIndex);