Lines Matching refs:handled

158     // They might not have actually handled the hover event, but we will
164 // It might not have actually handled the hover event.
1126 final boolean handled = notifyChildOfDrag(children[i]);
1127 if (handled) {
1154 // We consider drag-ended to have been handled if one of our children
1425 boolean handled = false;
1483 handled |= dispatchTransformedGenericPointerEvent(
1491 handled |= dispatchTransformedGenericPointerEvent(
1495 handled |= dispatchTransformedGenericPointerEvent(
1499 handled |= dispatchTransformedGenericPointerEvent(event, child);
1502 if (handled) {
1516 handled |= dispatchTransformedGenericPointerEvent(
1537 // Send events to the view group itself if no children have handled it.
1538 boolean newHoveredSelf = !handled;
1542 handled |= super.dispatchHoverEvent(event);
1549 handled |= super.dispatchHoverEvent(event); // exit
1568 handled |= super.dispatchHoverEvent(event); // enter
1574 handled |= super.dispatchHoverEvent(eventNoHistory); // enter
1577 handled |= super.dispatchHoverEvent(eventNoHistory); // move
1589 return handled;
1666 * Implement this method to intercept hover events before they are handled
1741 // No child handled the event. Send it to this view group.
1767 * @return {@code true} if the child handled the event.
1773 boolean handled;
1778 handled = child.dispatchGenericMotionEvent(transformedEvent);
1782 handled = child.dispatchGenericMotionEvent(event);
1785 return handled;
1797 boolean handled = false;
1903 handled = dispatchTransformedTouchEvent(ev, canceled, null,
1913 handled = true;
1919 handled = true;
1949 if (!handled && mInputEventConsistencyVerifier != null) {
1952 return handled;
2134 final boolean handled;
2142 handled = super.dispatchTouchEvent(event);
2144 handled = child.dispatchTouchEvent(event);
2147 return handled;
2168 handled = super.dispatchTouchEvent(event);
2174 handled = child.dispatchTouchEvent(event);
2178 return handled;
2187 handled = super.dispatchTouchEvent(transformedEvent);
2196 handled = child.dispatchTouchEvent(transformedEvent);
2201 return handled;
2272 * <li> The down event will be handled either by a child of this view
2440 boolean handled = false;
2442 handled = super.dispatchPopulateAccessibilityEventInternal(event);
2443 if (handled) {
2444 return handled;
2454 handled = child.dispatchPopulateAccessibilityEvent(event);
2455 if (handled) {
2456 return handled;