Searched defs:changedTouches (Results 1 - 3 of 3) sorted by last modified time

/external/webkit/Source/WebCore/dom/
H A DTouchEvent.cpp42 TouchList* changedTouches, const AtomicString& type,
49 , m_changedTouches(changedTouches)
61 TouchList* changedTouches, const AtomicString& type,
72 m_changedTouches = changedTouches;
41 TouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
60 initTouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DTouchEvent.h45 TouchList* targetTouches, TouchList* changedTouches,
50 return adoptRef(new TouchEvent(touches, targetTouches, changedTouches,
56 TouchList* changedTouches, const AtomicString& type,
63 TouchList* changedTouches() const { return m_changedTouches.get(); } function in class:WebCore::TouchEvent
73 TouchList* changedTouches, const AtomicString& type,
44 create(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
/external/webkit/Source/WebCore/page/
H A DEventHandler.cpp3074 // First build up the lists to use for the 'touches', 'targetTouches' and 'changedTouches' attributes
3086 // Array of touches per state, used to assemble the 'changedTouches' list in the JS event.
3093 } changedTouches[PlatformTouchPoint::TouchStateEnd]; local
3195 // released or cancelled it will only appear in the changedTouches list.
3201 // Now build up the correct list for changedTouches.
3204 // never be in the changedTouches list so we do not handle them explicitly here.
3209 if (!changedTouches[pointState].m_touches)
3210 changedTouches[pointState].m_touches = TouchList::create();
3211 changedTouches[pointState].m_touches->append(touch);
3212 changedTouches[pointStat
[all...]

Completed in 73 milliseconds