Home | History | Annotate | Download | only in page

Lines Matching defs:touches

3536     // First build up the lists to use for the 'touches', 'targetTouches' and 'changedTouches' attributes
3540 // Holds the complete set of touches on the screen and will be used as the 'touches' list in the JS event.
3541 RefPtr<TouchList> touches = TouchList::create();
3543 // A different view on the 'touches' list above, filtered and grouped by event target. Used for the
3548 // Array of touches per state, used to assemble the 'changedTouches' list in the JS event.
3551 // The touches corresponding to the particular change state this struct instance represents.
3686 // touches and targetTouches should only contain information about touches still on the screen, so if this point is
3689 touches->append(touch);
3694 // Note that any touches that are in the TouchStationary state (e.g. if
3707 m_touchPressed = touches->length() > 0;
3718 // When sending a touch cancel event, use empty touches and targetTouches lists.
3720 RefPtr<TouchList>& effectiveTouches(isTouchCancelEvent ? emptyList : touches);