Home
last modified time | relevance | path

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

12345

/external/chromium_org/third_party/WebKit/Source/core/events/
DTouchEvent.h45 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 …]
DTouchEventContext.h38 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;
DTouchEvent.cpp42 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()
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,
DTouchEventContext.cpp42 : m_touches(TouchList::create()) in TouchEventContext()
43 , m_targetTouches(TouchList::create()) in TouchEventContext()
44 , m_changedTouches(TouchList::create()) in TouchEventContext()
DEventPath.h42 class TouchList; variable
79 …void adjustTouchList(const Node*, const TouchList*, WillBeHeapVector<RawPtrWillBeMember<TouchList>…
90 static void checkReachability(TreeScope&, TouchList&);
DEventPath.cpp288 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/
DTouchList.h37 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
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()
44 void TouchList::trace(Visitor* visitor) in trace()
DTouchList.idl28 ] interface TouchList {
DDocument.idl199 [RuntimeEnabled=Touch] TouchList createTouchList(Touch... touches);
DDocument.h148 class TouchList; variable
934 …PassRefPtrWillBeRawPtr<TouchList> createTouchList(WillBeHeapVector<RefPtrWillBeMember<Touch> >&) c…
/external/chromium_org/third_party/WebKit/Source/web/tests/
DWebInputEventConversionTest.cpp130 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/
DRangeInputType.cpp163 TouchList* touches = event->targetTouches(); in handleTouchEvent()
/external/chromium_org/third_party/WebKit/Source/core/page/
DEventHandler.cpp3635 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/
Dcore_global_constructors_idls_idl_files_list.tmp85 ../../core/dom/TouchList.idl
Dcore_idl_files_list.tmp91 ../../core/dom/TouchList.idl
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/
Dcore_idl_files_list.tmp91 ../../../core/dom/TouchList.idl
/external/chromium_org/third_party/WebKit/Source/core/
Dwebcore_dom.target.darwin-x86.mk138 third_party/WebKit/Source/core/dom/TouchList.cpp \
Dwebcore_dom.target.linux-x86.mk138 third_party/WebKit/Source/core/dom/TouchList.cpp \
Dwebcore_dom.target.darwin-arm64.mk138 third_party/WebKit/Source/core/dom/TouchList.cpp \
Dwebcore_dom.target.linux-arm64.mk138 third_party/WebKit/Source/core/dom/TouchList.cpp \
Dwebcore_dom.target.linux-mips.mk138 third_party/WebKit/Source/core/dom/TouchList.cpp \
Dwebcore_dom.target.darwin-mips.mk138 third_party/WebKit/Source/core/dom/TouchList.cpp \
/external/chromium_org/third_party/WebKit/Source/bindings/modules/
Dmodules_core_global_constructors_idls_idl_files_list.tmp85 ../../core/dom/TouchList.idl

12345