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

  /external/chromium_org/third_party/WebKit/public/web/
WebTouchPoint.h 39 class WebTouchPoint {
41 WebTouchPoint()
WebInputEvent.h 36 #include "WebTouchPoint.h"
471 WebTouchPoint touches[touchesLengthCap];
475 WebTouchPoint changedTouches[touchesLengthCap];
479 WebTouchPoint targetTouches[touchesLengthCap];
  /external/chromium_org/content/browser/android/
touch_point.cc 14 using WebKit::WebTouchPoint;
22 WebTouchPoint::State state = static_cast<WebTouchPoint::State>(
24 if (state == WebTouchPoint::StateUndefined)
31 state = WebTouchPoint::StateCancelled;
37 WebTouchPoint wtp;
61 // Add the newly created WebTouchPoint to the event
98 WebKit::WebTouchPoint::StateUndefined,
99 WebKit::WebTouchPoint::StateReleased,
100 WebKit::WebTouchPoint::StatePressed
    [all...]
  /external/chromium_org/content/browser/renderer_host/
ui_events_helper.h 15 class WebTouchPoint;
50 // WebTouchPoint contained in the WebTouchEvent, or NULL if no point was
52 WebKit::WebTouchPoint* UpdateWebTouchEventFromUIEvent(
ui_events_helper.cc 37 WebKit::WebTouchPoint::State state) {
39 case WebKit::WebTouchPoint::StateReleased:
42 case WebKit::WebTouchPoint::StatePressed:
45 case WebKit::WebTouchPoint::StateMoved:
48 case WebKit::WebTouchPoint::StateCancelled:
56 WebKit::WebTouchPoint::State TouchPointStateFromEvent(
60 return WebKit::WebTouchPoint::StatePressed;
62 return WebKit::WebTouchPoint::StateReleased;
64 return WebKit::WebTouchPoint::StateMoved;
66 return WebKit::WebTouchPoint::StateCancelled
    [all...]
render_widget_host_view_aura_unittest.cc 291 EXPECT_EQ(WebKit::WebTouchPoint::StatePressed,
298 EXPECT_EQ(WebKit::WebTouchPoint::StateMoved,
316 EXPECT_EQ(WebKit::WebTouchPoint::StatePressed,
323 EXPECT_EQ(WebKit::WebTouchPoint::StateMoved,
336 EXPECT_EQ(WebKit::WebTouchPoint::StatePressed,
348 EXPECT_EQ(WebKit::WebTouchPoint::StateMoved,
385 EXPECT_EQ(WebKit::WebTouchPoint::StatePressed,
392 EXPECT_EQ(WebKit::WebTouchPoint::StateMoved,
401 EXPECT_EQ(WebKit::WebTouchPoint::StateMoved,
render_widget_host_view_win.cc 237 ui::EventType ConvertToUIEvent(WebKit::WebTouchPoint::State t) {
239 case WebKit::WebTouchPoint::StatePressed:
241 case WebKit::WebTouchPoint::StateMoved:
243 case WebKit::WebTouchPoint::StateStationary:
245 case WebKit::WebTouchPoint::StateReleased:
247 case WebKit::WebTouchPoint::StateCancelled:
283 TouchEventFromWebTouchPoint(const WebKit::WebTouchPoint& touch_point,
361 WebKit::WebTouchPoint* AddTouchPoint(TOUCHINPUT* touch_input);
363 // Copy details from a TOUCHINPUT to an existing WebTouchPoint, returning
365 bool UpdateTouchPoint(WebKit::WebTouchPoint* touch_point
    [all...]
render_widget_host_unittest.cc 51 using WebKit::WebTouchPoint;
779 if (touch_event_.touches[i].state == WebKit::WebTouchPoint::StateReleased)
784 WebKit::WebTouchPoint::StateStationary;
794 WebKit::WebTouchPoint& point =
799 point.state = WebKit::WebTouchPoint::StatePressed;
808 WebKit::WebTouchPoint& point = touch_event_.touches[index];
811 touch_event_.touches[index].state = WebKit::WebTouchPoint::StateMoved;
817 touch_event_.touches[index].state = WebKit::WebTouchPoint::StateReleased;
    [all...]
render_widget_host_view_aura.cc 242 WebKit::WebTouchPoint* point) {
243 if (point->state != WebKit::WebTouchPoint::StateReleased &&
244 point->state != WebKit::WebTouchPoint::StateCancelled)
    [all...]
  /external/chromium_org/content/browser/renderer_host/input/
touch_event_queue.cc 58 if (last_event.touches[i].state == WebKit::WebTouchPoint::StateMoved)
60 WebKit::WebTouchPoint::StateMoved;
141 const WebKit::WebTouchPoint& point = event.touches[i];
142 if (point.state == WebKit::WebTouchPoint::StateReleased ||
143 point.state == WebKit::WebTouchPoint::StateCancelled)
148 const WebKit::WebTouchPoint& point = event.touches[i];
149 if (point.state == WebKit::WebTouchPoint::StatePressed)
216 const WebKit::WebTouchPoint& point = event.touches[i];
218 if (point.state == WebKit::WebTouchPoint::StateStationary)
immediate_input_router_unittest.cc 31 using WebKit::WebTouchPoint;
493 if (touch_event_.touches[i].state == WebTouchPoint::StateReleased)
498 WebTouchPoint::StateStationary;
508 WebTouchPoint& point =
513 point.state = WebTouchPoint::StatePressed;
522 WebTouchPoint& point = touch_event_.touches[index];
525 touch_event_.touches[index].state = WebTouchPoint::StateMoved;
531 touch_event_.touches[index].state = WebTouchPoint::StateReleased;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebInputEventConversion.cpp 349 inline PlatformTouchPoint::State toPlatformTouchPointState(const WebTouchPoint::State state)
352 case WebTouchPoint::StateReleased:
354 case WebTouchPoint::StatePressed:
356 case WebTouchPoint::StateMoved:
358 case WebTouchPoint::StateStationary:
360 case WebTouchPoint::StateCancelled:
362 case WebTouchPoint::StateUndefined:
368 inline WebTouchPoint::State toWebTouchPointState(const AtomicString& type)
371 return WebTouchPoint::StateReleased;
373 return WebTouchPoint::StateCancelled
    [all...]
WebInputEventConversion.h 85 // Converts a WebTouchPoint to a WebCore::PlatformTouchPoint.
88 PlatformTouchPointBuilder(WebCore::Widget*, const WebTouchPoint&);
WebInputEvent.cpp 64 WebTouchPoint touchPoints[3 * WebTouchEvent::touchesLengthCap];
  /external/chromium_org/content/renderer/pepper/
event_conversion.cc 35 using WebKit::WebTouchPoint;
220 void SetPPTouchPoints(const WebTouchPoint* touches, uint32_t touches_length,
223 const WebTouchPoint& touch_point = touches[i];
257 typedef std::map<uint32_t, WebTouchPoint::State> TouchStateMap;
261 WebTouchPoint* web_touches,
266 WebTouchPoint pt;
271 pt.state = WebTouchPoint::StateStationary;
291 WebTouchPoint::State state = WebTouchPoint::StateUndefined;
295 state = WebTouchPoint::StatePressed
    [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...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
TestPlugin.cpp 37 #include "public/web/WebTouchPoint.h"
85 const char* pointState(WebTouchPoint::State state)
88 case WebTouchPoint::StateReleased:
90 case WebTouchPoint::StatePressed:
92 case WebTouchPoint::StateMoved:
94 case WebTouchPoint::StateCancelled:
104 void printTouchList(WebTestDelegate* delegate, const WebTouchPoint* points, int length)
EventSender.cpp 55 #include "public/web/WebTouchPoint.h"
101 vector<WebTouchPoint> touchPoints;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebInputEventConversionTest.cpp 213 webTouchEvent.touches[0].state = WebTouchPoint::StateMoved;
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin.cc     [all...]

Completed in 2280 milliseconds