Lines Matching refs:ev

2077     public boolean dispatchTouchEvent(MotionEvent ev) {
2079 mInputEventConsistencyVerifier.onTouchEvent(ev, 1);
2084 if (ev.isTargetAccessibilityFocus() && isAccessibilityFocusedViewOrHost()) {
2085 ev.setTargetAccessibilityFocus(false);
2089 if (onFilterTouchEventForSecurity(ev)) {
2090 final int action = ev.getAction();
2098 cancelAndClearTouchTargets(ev);
2108 intercepted = onInterceptTouchEvent(ev);
2109 ev.setAction(action); // restore action in case it was changed
2122 ev.setTargetAccessibilityFocus(false);
2140 View childWithAccessibilityFocus = ev.isTargetAccessibilityFocus()
2146 final int actionIndex = ev.getActionIndex(); // always 0 for down
2147 final int idBitsToAssign = split ? 1 << ev.getPointerId(actionIndex)
2156 final float x = ev.getX(actionIndex);
2157 final float y = ev.getY(actionIndex);
2184 ev.setTargetAccessibilityFocus(false);
2197 if (dispatchTransformedTouchEvent(ev, false, child, idBitsToAssign)) {
2199 mLastTouchDownTime = ev.getDownTime();
2211 mLastTouchDownX = ev.getX();
2212 mLastTouchDownY = ev.getY();
2220 ev.setTargetAccessibilityFocus(false);
2240 handled = dispatchTransformedTouchEvent(ev, canceled, null,
2254 if (dispatchTransformedTouchEvent(ev, cancelChild,
2280 final int actionIndex = ev.getActionIndex();
2281 final int idBitsToRemove = 1 << ev.getPointerId(actionIndex);
2287 mInputEventConsistencyVerifier.onUnhandledEvent(ev, 1);
2711 * @param ev The motion event being dispatched down the hierarchy.
2717 public boolean onInterceptTouchEvent(MotionEvent ev) {