Searched refs:PlatformTouchPoint (Results 1 - 16 of 16) sorted by relevance

/external/webkit/Source/WebCore/platform/android/
H A DPlatformTouchPointAndroid.cpp27 #include "PlatformTouchPoint.h"
33 PlatformTouchPoint::PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State state) function in class:WebCore::PlatformTouchPoint
H A DPlatformTouchEventAndroid.cpp41 PlatformTouchEvent::PlatformTouchEvent(const Vector<int>& ids, const Vector<IntPoint>& windowPoints, TouchEventType type, const Vector<PlatformTouchPoint::State>& states, int metaState)
49 m_touchPoints.append(PlatformTouchPoint(ids[c], windowPoints[c], states[c]));
/external/webkit/Source/WebCore/platform/brew/
H A DPlatformTouchPointBrew.cpp27 #include "PlatformTouchPoint.h"
33 PlatformTouchPoint::PlatformTouchPoint(int id, const IntPoint& windowPos, State state) function in class:WebCore::PlatformTouchPoint
H A DPlatformTouchEventBrew.cpp40 PlatformTouchPoint::State state;
45 state = PlatformTouchPoint::TouchPressed;
49 state = PlatformTouchPoint::TouchReleased;
54 state = PlatformTouchPoint::TouchMoved;
66 m_touchPoints.append(PlatformTouchPoint(id, windowPos, state));
/external/webkit/Source/WebCore/platform/efl/
H A DPlatformTouchPointEfl.cpp29 #include "PlatformTouchPoint.h"
35 PlatformTouchPoint::PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State state) function in class:WebCore::PlatformTouchPoint
H A DPlatformTouchEventEfl.cpp50 PlatformTouchPoint::State state = PlatformTouchPoint::TouchPressed;
53 state = PlatformTouchPoint::TouchPressed;
56 state = PlatformTouchPoint::TouchReleased;
59 state = PlatformTouchPoint::TouchMoved;
62 state = PlatformTouchPoint::TouchCancelled;
66 m_touchPoints.append(PlatformTouchPoint(p->id, pnt, state));
/external/webkit/Source/WebCore/platform/
H A DPlatformTouchPoint.h36 class PlatformTouchPoint { class in namespace:WebCore
48 PlatformTouchPoint(const QTouchEvent::TouchPoint&);
49 PlatformTouchPoint() {}; function in class:WebCore::PlatformTouchPoint
51 PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State);
53 PlatformTouchPoint(int id, const IntPoint& windowPos, State);
55 PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State);
H A DPlatformTouchEvent.h23 #include "PlatformTouchPoint.h"
70 PlatformTouchEvent(const Vector<int>&, const Vector<IntPoint>&, TouchEventType, const Vector<PlatformTouchPoint::State>&, int metaState);
80 const Vector<PlatformTouchPoint>& touchPoints() const { return m_touchPoints; }
92 Vector<PlatformTouchPoint> m_touchPoints;
/external/webkit/Source/WebCore/platform/qt/
H A DPlatformTouchPointQt.cpp24 #include "PlatformTouchPoint.h"
30 PlatformTouchPoint::PlatformTouchPoint(const QTouchEvent::TouchPoint& point) function in class:WebCore::PlatformTouchPoint
H A DPlatformTouchEventQt.cpp40 m_touchPoints.append(PlatformTouchPoint(points.at(i)));
/external/webkit/Source/WebKit2/Shared/
H A DWebEventConversion.h39 #include <WebCore/PlatformTouchPoint.h>
67 WebCore::PlatformTouchPoint platform(const WebTouchPoint&);
H A DWebEventConversion.cpp201 class WebKit2PlatformTouchPoint : public WebCore::PlatformTouchPoint {
209 m_state = PlatformTouchPoint::TouchReleased;
212 m_state = PlatformTouchPoint::TouchPressed;
215 m_state = PlatformTouchPoint::TouchMoved;
218 m_state = PlatformTouchPoint::TouchStationary;
221 m_state = PlatformTouchPoint::TouchCancelled;
/external/webkit/Source/WebKit/chromium/src/
H A DWebInputEventConversion.cpp190 static inline PlatformTouchPoint::State toPlatformTouchPointState(const WebTouchPoint::State state)
194 return PlatformTouchPoint::TouchReleased;
196 return PlatformTouchPoint::TouchPressed;
198 return PlatformTouchPoint::TouchMoved;
200 return PlatformTouchPoint::TouchStationary;
202 return PlatformTouchPoint::TouchCancelled;
206 return PlatformTouchPoint::TouchReleased;
H A DWebInputEventConversion.h76 class PlatformTouchPointBuilder : public WebCore::PlatformTouchPoint {
/external/webkit/Source/WebCore/page/
H A DEventHandler.cpp3055 static const AtomicString& eventNameForTouchPointState(PlatformTouchPoint::State state)
3058 case PlatformTouchPoint::TouchReleased:
3060 case PlatformTouchPoint::TouchCancelled:
3062 case PlatformTouchPoint::TouchPressed:
3064 case PlatformTouchPoint::TouchMoved:
3093 } changedTouches[PlatformTouchPoint::TouchStateEnd];
3095 const Vector<PlatformTouchPoint>& points = event.touchPoints();
3100 const PlatformTouchPoint& point = points[i];
3101 PlatformTouchPoint::State pointState = point.state();
3111 case PlatformTouchPoint
[all...]
/external/webkit/Source/WebKit/android/jni/
H A DWebViewCore.cpp3241 WebCore::PlatformTouchPoint::State defaultTouchState;
3242 Vector<WebCore::PlatformTouchPoint::State> touchStates(points.size());
3247 defaultTouchState = WebCore::PlatformTouchPoint::TouchPressed;
3251 defaultTouchState = WebCore::PlatformTouchPoint::TouchReleased;
3255 defaultTouchState = WebCore::PlatformTouchPoint::TouchMoved;
3259 defaultTouchState = WebCore::PlatformTouchPoint::TouchCancelled;
3263 defaultTouchState = WebCore::PlatformTouchPoint::TouchStationary;
3267 defaultTouchState = WebCore::PlatformTouchPoint::TouchStationary;
3283 touchStates[c] = WebCore::PlatformTouchPoint::TouchPressed;
3285 touchStates[c] = WebCore::PlatformTouchPoint
[all...]

Completed in 166 milliseconds