Home
last modified time | relevance | path

Searched refs:TouchList (Results 1 – 25 of 37) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/events/
DTouchEvent.h44 static PassRefPtr<TouchEvent> create(TouchList* touches, in create()
45 TouchList* targetTouches, TouchList* changedTouches, in create()
55 void initTouchEvent(TouchList* touches, TouchList* targetTouches,
56 TouchList* changedTouches, const AtomicString& type,
61 TouchList* touches() const { return m_touches.get(); } in touches()
62 TouchList* targetTouches() const { return m_targetTouches.get(); } in targetTouches()
63 TouchList* changedTouches() const { return m_changedTouches.get(); } in changedTouches()
65 void setTouches(PassRefPtr<TouchList> touches) { m_touches = touches; } in setTouches()
66 void setTargetTouches(PassRefPtr<TouchList> targetTouches) { m_targetTouches = targetTouches; } in setTargetTouches()
67 …void setChangedTouches(PassRefPtr<TouchList> changedTouches) { m_changedTouches = changedTouches; } in setChangedTouches()
[all …]
DEventContext.h39 class TouchList; variable
46 TouchList* touches() { return m_touches.get(); } in touches()
47 TouchList* targetTouches() { return m_targetTouches.get(); } in targetTouches()
48 TouchList* changedTouches() { return m_changedTouches.get(); } in changedTouches()
53 RefPtr<TouchList> m_touches;
54 RefPtr<TouchList> m_targetTouches;
55 RefPtr<TouchList> m_changedTouches;
DTouchEvent.cpp42 TouchEvent::TouchEvent(TouchList* touches, TouchList* targetTouches, in TouchEvent()
43 TouchList* changedTouches, const AtomicString& type, in TouchEvent()
61 void TouchEvent::initTouchEvent(TouchList* touches, TouchList* targetTouches, in initTouchEvent()
62 TouchList* changedTouches, const AtomicString& type, in initTouchEvent()
DEventRetargeter.h35 class TouchList; variable
42 typedef Vector<RefPtr<TouchList> > EventPathTouchLists;
56 …static void adjustTouchList(const Node*, const TouchList*, const EventPath&, EventPathTouchLists&);
58 static void checkReachability(Node*, TouchList*);
DTouchEvent.idl26 readonly attribute TouchList touches;
27 readonly attribute TouchList targetTouches;
28 readonly attribute TouchList changedTouches;
34 void initTouchEvent([Default=Undefined] optional TouchList touches,
35 [Default=Undefined] optional TouchList targetTouches,
36 [Default=Undefined] optional TouchList changedTouches,
DEventContext.cpp81 : m_touches(TouchList::create()) in TouchEventContext()
82 , m_targetTouches(TouchList::create()) in TouchEventContext()
83 , m_changedTouches(TouchList::create()) in TouchEventContext()
DEventRetargeter.cpp80 void EventRetargeter::checkReachability(Node* node, TouchList* touchList) in checkReachability()
87 void EventRetargeter::adjustTouchList(const Node* node, const TouchList* touchList, const EventPath… in adjustTouchList()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DTouchList.h36 class TouchList : public RefCounted<TouchList>, public ScriptWrappable {
38 static PassRefPtr<TouchList> create() in create()
40 return adoptRef(new TouchList); in create()
43 static PassRefPtr<TouchList> create(Vector<RefPtr<Touch> >& touches) in create()
45 return adoptRef(new TouchList(touches)); in create()
56 TouchList() in TouchList() function
61 TouchList(Vector<RefPtr<Touch> >& touches) in TouchList() function
DTouchList.cpp32 Touch* TouchList::item(unsigned index) in item()
39 const Touch* TouchList::item(unsigned index) const in item()
41 return const_cast<TouchList*>(this)->item(index); in item()
DTouchList.idl26 interface TouchList {
DDocument.idl195 [RuntimeEnabled=Touch] TouchList createTouchList(Touch... touches);
DDocument.h161 class TouchList; variable
916 PassRefPtr<TouchList> createTouchList(Vector<RefPtr<Touch> >&) const;
DDocument.cpp4809 PassRefPtr<TouchList> Document::createTouchList(Vector<RefPtr<Touch> >& touches) const in createTouchList()
4811 return TouchList::create(touches); in createTouchList()
/external/chromium_org/third_party/WebKit/Source/core/page/
DEventHandler.cpp3600 RefPtr<TouchList> touches = TouchList::create(); in handleTouchEvent()
3604 typedef HashMap<EventTarget*, RefPtr<TouchList> > TargetTouchesMap; in handleTouchEvent()
3611 RefPtr<TouchList> m_touches; in handleTouchEvent()
3739 … targetTouchesIterator = touchesByTarget.set(touchTarget.get(), TouchList::create()).iterator; in handleTouchEvent()
3757 changedTouches[pointState].m_touches = TouchList::create(); in handleTouchEvent()
3768 RefPtr<TouchList> emptyList = TouchList::create(); in handleTouchEvent()
3775 RefPtr<TouchList>& effectiveTouches(isTouchCancelEvent ? emptyList : touches); in handleTouchEvent()
3781 …RefPtr<TouchList> targetTouches(isTouchCancelEvent ? emptyList : touchesByTarget.get(touchEventTar… in handleTouchEvent()
/external/chromium_org/third_party/WebKit/Source/web/tests/
DWebInputEventConversionTest.cpp278 RefPtr<TouchList> touchList = TouchList::create(); in TEST()
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DRangeInputType.cpp172 TouchList* touches = event->targetTouches(); in handleTouchEvent()
/external/chromium_org/third_party/WebKit/Source/web/
DWebInputEventConversion.cpp699 static void addTouchPoints(const Widget* widget, const AtomicString& touchType, TouchList* touches,… in addTouchPoints()
/external/chromium_org/third_party/WebKit/Source/core/
Dwebcore_dom.target.linux-x86.mk153 third_party/WebKit/Source/core/dom/TouchList.cpp \
Dwebcore_dom.target.darwin-x86.mk153 third_party/WebKit/Source/core/dom/TouchList.cpp \
Dwebcore_dom.target.linux-mips.mk153 third_party/WebKit/Source/core/dom/TouchList.cpp \
Dwebcore_dom.target.darwin-mips.mk153 third_party/WebKit/Source/core/dom/TouchList.cpp \
Dwebcore_dom.target.darwin-arm.mk153 third_party/WebKit/Source/core/dom/TouchList.cpp \
Dwebcore_dom.target.linux-arm.mk153 third_party/WebKit/Source/core/dom/TouchList.cpp \
Dcore.gypi88 'dom/TouchList.idl',
2070 'dom/TouchList.cpp',
2071 'dom/TouchList.h',
/external/chromium_org/third_party/WebKit/Source/bindings/
Dmain_idl_files_list.tmp82 ../core/dom/TouchList.idl

12