HomeSort by relevance Sort by last modified time
    Searched defs:touch_event (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/mojo/services/public/cpp/input_events/lib/
input_events_type_converters.cc 114 const ui::TouchEvent* touch_event = local
117 touch_data->pointer_id = touch_event->touch_id();
  /external/chromium_org/content/common/input/
input_param_traits_unittest.cc 170 blink::WebTouchEvent touch_event; local
171 touch_event.type = blink::WebInputEvent::TouchStart;
172 touch_event.touchesLength = 1;
173 touch_event.touches[0].radiusX = 1;
174 events.push_back(new InputEvent(touch_event, latency, false));
  /external/chromium_org/content/renderer/input/
input_handler_proxy.cc 345 const WebTouchEvent& touch_event = local
347 for (size_t i = 0; i < touch_event.touchesLength; ++i) {
348 if (touch_event.touches[i].state != WebTouchPoint::StatePressed)
351 gfx::Point(touch_event.touches[i].position.x,
352 touch_event.touches[i].position.y))) {
  /external/chromium_org/ui/chromeos/
touch_exploration_controller.cc 69 const ui::TouchEvent& touch_event = static_cast<const ui::TouchEvent&>(event); local
76 touch_event.time_stamp() - initial_press_->time_stamp() >
91 const ui::EventType type = touch_event.type();
92 const gfx::PointF& location = touch_event.location_f();
93 const int touch_id = touch_event.touch_id();
123 VLOG_EVENT(touch_event);
128 FindEdgesWithinBounds(touch_event.location(), kLeavingScreenEdge) !=
152 gesture_provider_->OnTouchEvent(touch_event);
160 return InNoFingersDown(touch_event, rewritten_event);
162 return InSingleTapPressed(touch_event, rewritten_event)
    [all...]
  /external/chromium_org/content/browser/renderer_host/input/
synthetic_gesture_controller_unittest.cc 159 const WebTouchEvent& touch_event = static_cast<const WebTouchEvent&>(event); variable
160 ASSERT_EQ(touch_event.touchesLength, 1U);
163 ASSERT_EQ(touch_event.type, WebInputEvent::TouchStart);
164 start_.SetPoint(touch_event.touches[0].position.x,
165 touch_event.touches[0].position.y);
169 ASSERT_NE(touch_event.type, WebInputEvent::TouchStart);
170 ASSERT_NE(touch_event.type, WebInputEvent::TouchCancel);
172 gfx::PointF touch_point(touch_event.touches[0].position.x,
173 touch_event.touches[0].position.y);
177 if (touch_event.type == WebInputEvent::TouchEnd
208 const WebTouchEvent& touch_event = static_cast<const WebTouchEvent&>(event); variable
308 const WebTouchEvent& touch_event = static_cast<const WebTouchEvent&>(event); variable
    [all...]
  /external/chromium_org/content/renderer/pepper/
event_conversion.cc 251 const WebTouchEvent& touch_event = local
256 touch_event.touches, touch_event.touchesLength, ACTIVE, &result.touches);
257 SetPPTouchPoints(touch_event.touches,
258 touch_event.touchesLength,
261 SetPPTouchPoints(touch_event.touches,
262 touch_event.touchesLength,
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_impl.cc 1957 TouchEventWithLatencyInfo touch_event = event; local
    [all...]
  /external/chromium_org/content/renderer/
render_widget.cc 1057 const WebTouchEvent& touch_event = local
    [all...]
  /external/chromium_org/content/shell/renderer/test_runner/
event_sender.cc 1907 WebTouchEvent touch_event; local
    [all...]

Completed in 506 milliseconds