Searched refs:TouchList (Results 1 – 18 of 18) sorted by relevance
/external/webkit/WebCore/dom/ |
D | TouchEvent.h | 42 static PassRefPtr<TouchEvent> create(TouchList* touches, in create() 43 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() 65 TouchEvent(TouchList* touches, TouchList* targetTouches, 66 TouchList* changedTouches, const AtomicString& type, 73 RefPtr<TouchList> m_touches; [all …]
|
D | TouchEvent.cpp | 34 TouchEvent::TouchEvent(TouchList* touches, TouchList* targetTouches, in TouchEvent() 35 TouchList* changedTouches, const AtomicString& type, in TouchEvent() 46 void TouchEvent::initTouchEvent(TouchList* touches, TouchList* targetTouches, in initTouchEvent() 47 TouchList* changedTouches, const AtomicString& type, in initTouchEvent()
|
D | TouchList.h | 37 class TouchList : public RefCounted<TouchList> { 39 static PassRefPtr<TouchList> create() in create() 41 return adoptRef(new TouchList); in create() 51 TouchList() {} in TouchList() function
|
D | TouchEvent.idl | 31 readonly attribute TouchList touches; 32 readonly attribute TouchList targetTouches; 33 readonly attribute TouchList changedTouches; 39 void initTouchEvent(in TouchList touches, 40 in TouchList targetTouches, 41 in TouchList changedTouches,
|
D | TouchList.cpp | 34 Touch* TouchList::item(unsigned index) in item()
|
D | TouchList.idl | 31 ] TouchList {
|
D | Document.h | 138 class TouchList; variable 956 PassRefPtr<TouchList> createTouchList(ExceptionCode&) const;
|
D | Document.idl | 326 [ReturnsNew] TouchList createTouchList()
|
D | Document.cpp | 4907 PassRefPtr<TouchList> Document::createTouchList(ExceptionCode&) const in createTouchList() 4909 return TouchList::create(); in createTouchList()
|
/external/webkit/WebCore/bindings/js/ |
D | JSTouchListCustom.cpp | 37 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, TouchList* touchList) in toJSNewlyCreated() 42 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, TouchList, touchList); in toJSNewlyCreated()
|
/external/webkit/WebCore/page/ |
D | EventHandler.cpp | 2556 static PassRefPtr<TouchList> assembleTargetTouches(Touch* touchTarget, TouchList* touches) in assembleTargetTouches() 2558 RefPtr<TouchList> targetTouches = TouchList::create(); in assembleTargetTouches() 2570 RefPtr<TouchList> touches = TouchList::create(); in handleTouchEvent() 2571 RefPtr<TouchList> pressedTouches = TouchList::create(); in handleTouchEvent() 2572 RefPtr<TouchList> releasedTouches = TouchList::create(); in handleTouchEvent() 2573 RefPtr<TouchList> movedTouches = TouchList::create(); in handleTouchEvent() 2574 RefPtr<TouchList> cancelTouches = TouchList::create(); in handleTouchEvent() 2655 … TouchEvent::create(TouchList::create().get(), TouchList::create().get(), cancelTouches.get(), in handleTouchEvent() 2670 RefPtr<TouchList> targetTouches = assembleTargetTouches(changedTouch, touches.get()); in handleTouchEvent() 2688 RefPtr<TouchList> targetTouches = assembleTargetTouches(changedTouch, touches.get()); in handleTouchEvent() [all …]
|
/external/webkit/WebCore/plugins/android/ |
D | PluginViewAndroid.cpp | 219 TouchList* touches = (evt.data.touch.action == kUp_ANPTouchAction in handleTouchEvent()
|
/external/webkit/WebCore/bindings/v8/ |
D | V8Index.h | 533 V(TOUCHLIST, TouchList)
|
/external/webkit/WebCore/ |
D | WebCore.pri | 269 dom/TouchList.idl \
|
D | Android.mk | 175 dom/TouchList.cpp \
|
D | WebCore.pro | 507 dom/TouchList.cpp \ 1199 dom/TouchList.h \
|
D | WebCore.gypi | 78 'dom/TouchList.idl',
|
D | ChangeLog-2010-01-29 | 17867 * dom/TouchList.idl: 22875 The Touch, TouchEvent and TouchList interfaces come straight from 22926 * dom/TouchList.cpp: Added. 22927 (WebCore::TouchList::item): 22928 * dom/TouchList.h: Added. 22929 (WebCore::TouchList::create): 22930 (WebCore::TouchList::length): 22931 (WebCore::TouchList::append): 22932 (WebCore::TouchList::TouchList): 22933 * dom/TouchList.idl: Added.
|