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

  /external/webkit/Source/WebKit/chromium/public/
WebTouchPoint.h 39 class WebTouchPoint {
47 WebTouchPoint()
WebInputEvent.h 35 #include "WebTouchPoint.h"
311 WebTouchPoint touchPoints[touchPointsLengthCap];
  /external/webkit/Source/WebKit2/Shared/
WebEventConversion.h 54 class WebTouchPoint;
67 WebCore::PlatformTouchPoint platform(const WebTouchPoint&);
  /external/webkit/Source/WebKit/chromium/src/
WebInputEventConversion.h 78 PlatformTouchPointBuilder(WebCore::Widget*, const WebTouchPoint&);
WebInputEventConversion.cpp 190 static inline PlatformTouchPoint::State toPlatformTouchPointState(const WebTouchPoint::State state)
193 case WebTouchPoint::StateReleased:
195 case WebTouchPoint::StatePressed:
197 case WebTouchPoint::StateMoved:
199 case WebTouchPoint::StateStationary:
201 case WebTouchPoint::StateCancelled:
203 case WebTouchPoint::StateUndefined:
209 PlatformTouchPointBuilder::PlatformTouchPointBuilder(Widget* widget, const WebTouchPoint& point)
  /external/webkit/Tools/DumpRenderTree/chromium/
EventSender.cpp 52 #include "WebTouchPoint.h"
96 static Vector<WebTouchPoint> touchPoints;
844 WebTouchPoint touchPoint;
845 touchPoint.state = WebTouchPoint::StatePressed;
865 WebTouchPoint* touchPoint = &touchPoints[index];
866 touchPoint->state = WebTouchPoint::StateReleased;
898 WebTouchPoint* touchPoint = &touchPoints[index];
899 touchPoint->state = WebTouchPoint::StateMoved;
    [all...]
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_views.cc 92 WebKit::WebTouchPoint::State TouchPointStateFromEvent(
96 return WebKit::WebTouchPoint::StatePressed;
98 return WebKit::WebTouchPoint::StateReleased;
100 return WebKit::WebTouchPoint::StateMoved;
102 return WebKit::WebTouchPoint::StateCancelled;
104 return WebKit::WebTouchPoint::StateUndefined;
126 WebKit::WebTouchPoint* tpoint) {
506 WebKit::WebTouchPoint* point = NULL;
560 if (point->state == WebKit::WebTouchPoint::StateMoved) {
572 WebKit::WebTouchPoint* iter = touch_event_.touchPoints + i
    [all...]

Completed in 54 milliseconds