/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | TouchEvent.h | 45 static PassRefPtrWillBeRawPtr<TouchEvent> create(TouchList* touches, in create() 46 TouchList* targetTouches, TouchList* changedTouches, in create() 54 void initTouchEvent(TouchList* touches, TouchList* targetTouches, 55 TouchList* changedTouches, const AtomicString& type, 60 TouchList* touches() const { return m_touches.get(); } in touches() 61 TouchList* targetTouches() const { return m_targetTouches.get(); } in targetTouches() 62 TouchList* changedTouches() const { return m_changedTouches.get(); } in changedTouches() 64 void setTouches(PassRefPtrWillBeRawPtr<TouchList> touches) { m_touches = touches; } in setTouches() 65 …void setTargetTouches(PassRefPtrWillBeRawPtr<TouchList> targetTouches) { m_targetTouches = targetT… in setTargetTouches() 66 …void setChangedTouches(PassRefPtrWillBeRawPtr<TouchList> changedTouches) { m_changedTouches = chan… in setChangedTouches() [all …]
|
D | TouchEventContext.h | 38 class TouchList; variable 45 TouchList& touches() { return *m_touches; } in touches() 46 TouchList& targetTouches() { return *m_targetTouches; } in targetTouches() 47 TouchList& changedTouches() { return *m_changedTouches; } in changedTouches() 54 RefPtrWillBeMember<TouchList> m_touches; 55 RefPtrWillBeMember<TouchList> m_targetTouches; 56 RefPtrWillBeMember<TouchList> m_changedTouches;
|
D | TouchEvent.cpp | 42 TouchEvent::TouchEvent(TouchList* touches, TouchList* targetTouches, in TouchEvent() 43 TouchList* changedTouches, const AtomicString& type, in TouchEvent() 58 void TouchEvent::initTouchEvent(TouchList* touches, TouchList* targetTouches, in initTouchEvent() 59 TouchList* changedTouches, const AtomicString& type, in initTouchEvent()
|
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 | TouchEventContext.cpp | 42 : m_touches(TouchList::create()) in TouchEventContext() 43 , m_targetTouches(TouchList::create()) in TouchEventContext() 44 , m_changedTouches(TouchList::create()) in TouchEventContext()
|
D | EventPath.h | 42 class TouchList; variable 79 …void adjustTouchList(const Node*, const TouchList*, WillBeHeapVector<RawPtrWillBeMember<TouchList>… 90 static void checkReachability(TreeScope&, TouchList&);
|
D | EventPath.cpp | 288 WillBeHeapVector<RawPtrWillBeMember<TouchList> > adjustedTouches; in adjustForTouchEvent() 289 WillBeHeapVector<RawPtrWillBeMember<TouchList> > adjustedTargetTouches; in adjustForTouchEvent() 290 WillBeHeapVector<RawPtrWillBeMember<TouchList> > adjustedChangedTouches; in adjustForTouchEvent() 316 …h::adjustTouchList(const Node* node, const TouchList* touchList, WillBeHeapVector<RawPtrWillBeMemb… in adjustTouchList() 331 void EventPath::checkReachability(TreeScope& treeScope, TouchList& touchList) in checkReachability()
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | TouchList.h | 37 class TouchList FINAL : public RefCountedWillBeGarbageCollected<TouchList>, public ScriptWrappable { 40 static PassRefPtrWillBeRawPtr<TouchList> create() in create() 42 return adoptRefWillBeNoop(new TouchList); in create() 45 …static PassRefPtrWillBeRawPtr<TouchList> adopt(WillBeHeapVector<RefPtrWillBeMember<Touch> >& touch… in adopt() 47 return adoptRefWillBeNoop(new TouchList(touches)); in adopt() 60 TouchList() { } in TouchList() function 62 TouchList(WillBeHeapVector<RefPtrWillBeMember<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() 44 void TouchList::trace(Visitor* visitor) in trace()
|
D | TouchList.idl | 28 ] interface TouchList {
|
D | Document.idl | 199 [RuntimeEnabled=Touch] TouchList createTouchList(Touch... touches);
|
D | Document.h | 148 class TouchList; variable 934 …PassRefPtrWillBeRawPtr<TouchList> createTouchList(WillBeHeapVector<RefPtrWillBeMember<Touch> >&) c…
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
D | WebInputEventConversionTest.cpp | 130 RefPtrWillBeRawPtr<TouchList> touchList = TouchList::create(); in TEST() 150 RefPtrWillBeRawPtr<TouchList> activeTouchList = TouchList::create(); in TEST() 151 RefPtrWillBeRawPtr<TouchList> movedTouchList = TouchList::create(); in TEST() 168 RefPtrWillBeRawPtr<TouchList> activeTouchList = TouchList::create(); in TEST() 169 RefPtrWillBeRawPtr<TouchList> releasedTouchList = TouchList::create(); in TEST() 185 RefPtrWillBeRawPtr<TouchList> activeTouchList = TouchList::create(); in TEST() 186 RefPtrWillBeRawPtr<TouchList> cancelledTouchList = TouchList::create(); in TEST() 202 RefPtrWillBeRawPtr<TouchList> touchList = TouchList::create(); in TEST() 203 RefPtrWillBeRawPtr<TouchList> changedTouchList = TouchList::create(); in TEST() 408 RefPtrWillBeRawPtr<TouchList> touchList = TouchList::create(); in TEST()
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
D | RangeInputType.cpp | 163 TouchList* touches = event->targetTouches(); in handleTouchEvent()
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | EventHandler.cpp | 3635 RefPtrWillBeRawPtr<TouchList> touches = TouchList::create(); in handleTouchEvent() 3639 typedef WillBeHeapHashMap<EventTarget*, RefPtrWillBeMember<TouchList> > TargetTouchesHeapMap; in handleTouchEvent() 3647 RefPtrWillBeMember<TouchList> m_touches; in handleTouchEvent() 3715 touchesByTarget.set(touchTarget.get(), TouchList::create()); in handleTouchEvent() 3736 changedTouches[pointState].m_touches = TouchList::create(); in handleTouchEvent()
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/ |
D | core_global_constructors_idls_idl_files_list.tmp | 85 ../../core/dom/TouchList.idl
|
D | core_idl_files_list.tmp | 91 ../../core/dom/TouchList.idl
|
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/ |
D | core_idl_files_list.tmp | 91 ../../../core/dom/TouchList.idl
|
/external/chromium_org/third_party/WebKit/Source/core/ |
D | webcore_dom.target.darwin-x86.mk | 138 third_party/WebKit/Source/core/dom/TouchList.cpp \
|
D | webcore_dom.target.linux-x86.mk | 138 third_party/WebKit/Source/core/dom/TouchList.cpp \
|
D | webcore_dom.target.darwin-arm64.mk | 138 third_party/WebKit/Source/core/dom/TouchList.cpp \
|
D | webcore_dom.target.linux-arm64.mk | 138 third_party/WebKit/Source/core/dom/TouchList.cpp \
|
D | webcore_dom.target.linux-mips.mk | 138 third_party/WebKit/Source/core/dom/TouchList.cpp \
|
D | webcore_dom.target.darwin-mips.mk | 138 third_party/WebKit/Source/core/dom/TouchList.cpp \
|
/external/chromium_org/third_party/WebKit/Source/bindings/modules/ |
D | modules_core_global_constructors_idls_idl_files_list.tmp | 85 ../../core/dom/TouchList.idl
|