Home | History | Annotate | Download | only in page

Lines Matching refs:touches

3080     // First build up the lists to use for the 'touches
3084 // Holds the complete set of touches on the screen and will be used as the 'touches' list in the JS event.
3085 RefPtr<TouchList> touches = TouchList::create();
3087 // A different view on the 'touches' list above, filtered and grouped by event target. Used for the
3092 // Array of touches per state, used to assemble the 'changedTouches' list in the JS event.
3095 // The touches corresponding to the particular change state this struct instance represents.
3200 // touches and targetTouches should only contain information about touches still on the screen, so if this point is
3203 touches->append(touch);
3208 // Note that any touches that are in the TouchStationary state (e.g. if
3221 m_touchPressed = touches->length() > 0;
3230 // When sending a touch cancel event, use empty touches and targetTouches lists.
3232 RefPtr<TouchList>& effectiveTouches(isTouchCancelEvent ? emptyList : touches);