Searched defs:changedTouches (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/events/
H A DTouchEvent.cpp43 TouchList* changedTouches, const AtomicString& type,
52 , m_changedTouches(changedTouches)
62 TouchList* changedTouches, const AtomicString& type,
73 m_changedTouches = changedTouches;
42 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
61 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
67 void setChangedTouches(PassRefPtr<TouchList> changedTouches) { m_changedTouches = changedTouches; } argument
76 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
H A DEventContext.h48 TouchList* changedTouches() { return m_changedTouches.get(); } function in class:WebCore::TouchEventContext
/external/chromium_org/third_party/WebKit/public/web/
H A DWebInputEvent.h482 WebTouchPoint changedTouches[touchesLengthCap]; member in class:blink::WebTouchEvent
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DEventHandler.cpp3595 // First build up the lists to use for the 'touches', 'targetTouches' and 'changedTouches' attributes
3607 // Array of touches per state, used to assemble the 'changedTouches' list in the JS event.
3614 } changedTouches[PlatformTouchPoint::TouchStateEnd]; local
3742 // released or cancelled it will only appear in the changedTouches list.
3748 // Now build up the correct list for changedTouches.
3751 // never be in the changedTouches list so we do not handle them explicitly here.
3756 if (!changedTouches[pointState].m_touches)
3757 changedTouches[pointState].m_touches = TouchList::create();
3758 changedTouches[pointState].m_touches->append(touch);
3759 changedTouches[pointStat
[all...]

Completed in 1095 milliseconds