Home
last modified time | relevance | path

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

1234

/external/chromium_org/third_party/WebKit/Source/core/events/
DTouchEvent.h44 static PassRefPtrWillBeRawPtr<TouchEvent> create(TouchList* touches, in create()
45 TouchList* targetTouches, TouchList* changedTouches, in create()
53 void initTouchEvent(TouchList* touches, TouchList* targetTouches,
54 TouchList* changedTouches, const AtomicString& type,
59 TouchList* touches() const { return m_touches.get(); } in touches()
60 TouchList* targetTouches() const { return m_targetTouches.get(); } in targetTouches()
61 TouchList* changedTouches() const { return m_changedTouches.get(); } in changedTouches()
63 void setTouches(PassRefPtrWillBeRawPtr<TouchList> touches) { m_touches = touches; } in setTouches()
64 …void setTargetTouches(PassRefPtrWillBeRawPtr<TouchList> targetTouches) { m_targetTouches = targetT… in setTargetTouches()
65 …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()
59 void TouchEvent::initTouchEvent(TouchList* touches, TouchList* targetTouches, in initTouchEvent()
60 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
84 …void adjustTouchList(const Node*, const TouchList*, WillBeHeapVector<RawPtrWillBeMember<TouchList>…
95 static void checkReachability(TreeScope&, TouchList&);
DEventPath.cpp300 WillBeHeapVector<RawPtrWillBeMember<TouchList> > adjustedTouches; in adjustForTouchEvent()
301 WillBeHeapVector<RawPtrWillBeMember<TouchList> > adjustedTargetTouches; in adjustForTouchEvent()
302 WillBeHeapVector<RawPtrWillBeMember<TouchList> > adjustedChangedTouches; in adjustForTouchEvent()
328 …h::adjustTouchList(const Node* node, const TouchList* touchList, WillBeHeapVector<RawPtrWillBeMemb… in adjustTouchList()
343 void EventPath::checkReachability(TreeScope& treeScope, TouchList& touchList) in checkReachability()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DTouchList.h37 class TouchList : public RefCountedWillBeGarbageCollectedFinalized<TouchList>, public ScriptWrappab…
39 static PassRefPtrWillBeRawPtr<TouchList> create() in create()
41 return adoptRefWillBeNoop(new TouchList); in create()
44 …static PassRefPtrWillBeRawPtr<TouchList> create(WillBeHeapVector<RefPtrWillBeMember<Touch> >& touc… in create()
46 return adoptRefWillBeNoop(new TouchList(touches)); in create()
59 TouchList() in TouchList() function
64 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.idl205 [RuntimeEnabled=Touch] TouchList createTouchList(Touch... touches);
DDocument.h169 class TouchList; variable
952 …PassRefPtrWillBeRawPtr<TouchList> createTouchList(WillBeHeapVector<RefPtrWillBeMember<Touch> >&) c…
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DRangeInputType.cpp167 TouchList* touches = event->targetTouches(); in handleTouchEvent()
/external/chromium_org/third_party/WebKit/Source/web/tests/
DWebInputEventConversionTest.cpp287 RefPtrWillBeRawPtr<TouchList> touchList = TouchList::create(); in TEST()
/external/chromium_org/third_party/WebKit/Source/core/page/
DEventHandler.cpp3508 RefPtrWillBeRawPtr<TouchList> touches = TouchList::create(); in handleTouchEvent()
3512 typedef WillBeHeapHashMap<EventTarget*, RefPtrWillBeMember<TouchList> > TargetTouchesHeapMap; in handleTouchEvent()
3520 RefPtrWillBeMember<TouchList> m_touches; in handleTouchEvent()
3590 touchesByTarget.set(touchTarget.get(), TouchList::create()); in handleTouchEvent()
3611 changedTouches[pointState].m_touches = TouchList::create(); in handleTouchEvent()
/external/chromium_org/third_party/WebKit/Source/bindings/core/
Dcore_global_objects_idl_files_list.tmp78 ../../core/dom/TouchList.idl
Dcore_idl_files_list.tmp78 ../../core/dom/TouchList.idl
Dcore_global_constructors_idls_idl_files_list.tmp78 ../../core/dom/TouchList.idl
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/
Dcore_idl_files_list.tmp78 ../../../core/dom/TouchList.idl
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
Dcore_idl_files_list.tmp78 ../../../core/dom/TouchList.idl
Dcore_static_idl_files_list.tmp78 ../../../core/dom/TouchList.idl
/external/chromium_org/third_party/WebKit/Source/web/
DWebInputEventConversion.cpp746 static void addTouchPoints(const Widget* widget, const AtomicString& touchType, TouchList* touches,… in addTouchPoints()
/external/chromium_org/third_party/WebKit/Source/bindings/modules/
Dmodules_core_global_constructors_idls_idl_files_list.tmp78 ../../core/dom/TouchList.idl
Dcore_idl_files_list.tmp78 ../../core/dom/TouchList.idl
/external/chromium_org/third_party/WebKit/Source/core/
Dwebcore_dom.target.darwin-x86.mk136 third_party/WebKit/Source/core/dom/TouchList.cpp \

1234