/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | TouchEvent.h | 44 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 …]
|
D | EventContext.h | 39 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;
|
D | TouchEvent.cpp | 42 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()
|
D | EventRetargeter.h | 35 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*);
|
D | TouchEvent.idl | 26 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,
|
D | EventContext.cpp | 81 : m_touches(TouchList::create()) in TouchEventContext() 82 , m_targetTouches(TouchList::create()) in TouchEventContext() 83 , m_changedTouches(TouchList::create()) in TouchEventContext()
|
D | EventRetargeter.cpp | 80 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/ |
D | TouchList.h | 36 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
|
D | TouchList.cpp | 32 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()
|
D | TouchList.idl | 26 interface TouchList {
|
D | Document.idl | 195 [RuntimeEnabled=Touch] TouchList createTouchList(Touch... touches);
|
D | Document.h | 161 class TouchList; variable 916 PassRefPtr<TouchList> createTouchList(Vector<RefPtr<Touch> >&) const;
|
D | Document.cpp | 4809 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/ |
D | EventHandler.cpp | 3600 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/ |
D | WebInputEventConversionTest.cpp | 278 RefPtr<TouchList> touchList = TouchList::create(); in TEST()
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
D | RangeInputType.cpp | 172 TouchList* touches = event->targetTouches(); in handleTouchEvent()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebInputEventConversion.cpp | 699 static void addTouchPoints(const Widget* widget, const AtomicString& touchType, TouchList* touches,… in addTouchPoints()
|
/external/chromium_org/third_party/WebKit/Source/core/ |
D | webcore_dom.target.linux-x86.mk | 153 third_party/WebKit/Source/core/dom/TouchList.cpp \
|
D | webcore_dom.target.darwin-x86.mk | 153 third_party/WebKit/Source/core/dom/TouchList.cpp \
|
D | webcore_dom.target.linux-mips.mk | 153 third_party/WebKit/Source/core/dom/TouchList.cpp \
|
D | webcore_dom.target.darwin-mips.mk | 153 third_party/WebKit/Source/core/dom/TouchList.cpp \
|
D | webcore_dom.target.darwin-arm.mk | 153 third_party/WebKit/Source/core/dom/TouchList.cpp \
|
D | webcore_dom.target.linux-arm.mk | 153 third_party/WebKit/Source/core/dom/TouchList.cpp \
|
D | core.gypi | 88 'dom/TouchList.idl', 2070 'dom/TouchList.cpp', 2071 'dom/TouchList.h',
|
/external/chromium_org/third_party/WebKit/Source/bindings/ |
D | main_idl_files_list.tmp | 82 ../core/dom/TouchList.idl
|