HomeSort by relevance Sort by last modified time
    Searched refs:PlatformTouchPoint (Results 1 - 16 of 16) sorted by null

  /external/webkit/Source/WebCore/platform/android/
PlatformTouchPointAndroid.cpp 27 #include "PlatformTouchPoint.h"
33 PlatformTouchPoint::PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State state)
PlatformTouchEventAndroid.cpp 41 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/
PlatformTouchPointBrew.cpp 27 #include "PlatformTouchPoint.h"
33 PlatformTouchPoint::PlatformTouchPoint(int id, const IntPoint& windowPos, State state)
PlatformTouchEventBrew.cpp 40 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/
PlatformTouchPointEfl.cpp 29 #include "PlatformTouchPoint.h"
35 PlatformTouchPoint::PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State state)
PlatformTouchEventEfl.cpp 50 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/
PlatformTouchPoint.h 36 class PlatformTouchPoint {
48 PlatformTouchPoint(const QTouchEvent::TouchPoint&);
49 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);
PlatformTouchEvent.h 23 #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/
PlatformTouchPointQt.cpp 24 #include "PlatformTouchPoint.h"
30 PlatformTouchPoint::PlatformTouchPoint(const QTouchEvent::TouchPoint& point)
PlatformTouchEventQt.cpp 40 m_touchPoints.append(PlatformTouchPoint(points.at(i)));
  /external/webkit/Source/WebKit2/Shared/
WebEventConversion.h 39 #include <WebCore/PlatformTouchPoint.h>
67 WebCore::PlatformTouchPoint platform(const WebTouchPoint&);
WebEventConversion.cpp 201 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/
WebInputEventConversion.h 76 class PlatformTouchPointBuilder : public WebCore::PlatformTouchPoint {
WebInputEventConversion.cpp 190 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;
  /external/webkit/Source/WebCore/page/
EventHandler.cpp     [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp     [all...]

Completed in 188 milliseconds