HomeSort by relevance Sort by last modified time
    Searched refs:GestureFlingCancel (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/content/browser/renderer_host/input/
touchpad_tap_suppression_controller_aura.cc 21 void TouchpadTapSuppressionController::GestureFlingCancel() {
22 controller_->GestureFlingCancel();
touchpad_tap_suppression_controller.cc 21 void TouchpadTapSuppressionController::GestureFlingCancel() {}
touchscreen_tap_suppression_controller_stub.cc 20 void TouchscreenTapSuppressionController::GestureFlingCancel() {}
tap_suppression_controller.h 17 // immediately following a GestureFlingCancel event (caused by the same tap).
19 // GestureFlingCancel are suppressed.
25 // Should be called whenever a GestureFlingCancel event is received.
26 void GestureFlingCancel();
28 // Should be called whenever an ACK for a GestureFlingCancel event is
29 // received. |processed| is true when the GestureFlingCancel actually stopped
touchpad_tap_suppression_controller.h 26 // of a GestureFlingCancel event.
34 // Should be called on arrival of GestureFlingCancel events.
35 void GestureFlingCancel();
37 // Should be called on arrival of ACK for a GestureFlingCancel event.
38 // |processed| is true if the GestureFlingCancel successfully stopped a fling.
touchscreen_tap_suppression_controller.h 18 // dispatch of a GestureFlingCancel event.
25 // Should be called on arrival of GestureFlingCancel events.
26 void GestureFlingCancel();
28 // Should be called on arrival of ACK for a GestureFlingCancel event.
29 // |processed| is true if the GestureFlingCancel successfully stopped a fling.
touchscreen_tap_suppression_controller.cc 25 void TouchscreenTapSuppressionController::GestureFlingCancel() {
26 controller_->GestureFlingCancel();
gesture_event_filter.cc 60 if (it->event.type == WebInputEvent::GestureFlingCancel)
123 return gesture_event.event.type != WebInputEvent::GestureFlingCancel ||
130 case WebInputEvent::GestureFlingCancel:
132 touchscreen_tap_suppression_controller_->GestureFlingCancel();
134 touchpad_tap_suppression_controller_->GestureFlingCancel();
158 case WebInputEvent::GestureFlingCancel:
193 if (type == WebInputEvent::GestureFlingCancel) {
tap_suppression_controller.cc 21 void TapSuppressionController::GestureFlingCancel() {
gesture_event_filter_unittest.cc 706 SimulateGestureEvent(WebInputEvent::GestureFlingCancel, source_device);
717 SimulateGestureEvent(WebInputEvent::GestureFlingCancel, source_device);
720 SendInputEventACK(WebInputEvent::GestureFlingCancel,
729 SimulateGestureEvent(WebInputEvent::GestureFlingCancel, source_device);
739 SendInputEventACK(WebInputEvent::GestureFlingCancel,
757 SimulateGestureEvent(WebInputEvent::GestureFlingCancel, source_device);
759 EXPECT_EQ(WebInputEvent::GestureFlingCancel, merged_event.type);
764 SimulateGestureEvent(WebInputEvent::GestureFlingCancel, source_device);
776 SimulateGestureEvent(WebInputEvent::GestureFlingCancel, source_device);
778 EXPECT_EQ(WebInputEvent::GestureFlingCancel, merged_event.type)
    [all...]
tap_suppression_controller_unittest.cc 48 GestureFlingCancel();
134 using TapSuppressionController::GestureFlingCancel;
171 // Test TapSuppressionController for when GestureFlingCancel Ack comes before
177 // Send GestureFlingCancel.
184 // Send GestureFlingCancel Ack.
207 // Test TapSuppressionController for when GestureFlingCancel Ack comes before
213 // Send GestureFlingCancel.
220 // Send GestureFlingCancel Ack.
251 // Test TapSuppressionController for when GestureFlingCancel Ack comes before
257 // Send GestureFlingCancel
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 120 GestureFlingCancel,
230 || type == GestureFlingCancel
  /external/chromium_org/content/renderer/input/
input_handler_proxy_unittest.cc 394 // Verify that a GestureFlingCancel during an animation cancels it.
395 gesture_.type = WebInputEvent::GestureFlingCancel;
420 gesture_.type = WebInputEvent::GestureFlingCancel;
441 gesture_.type = WebInputEvent::GestureFlingCancel;
548 // next GestureFlingCancel to the main
551 gesture_.type = WebInputEvent::GestureFlingCancel;
657 // next GestureFlingCancel to the main
660 gesture_.type = WebInputEvent::GestureFlingCancel;
766 // Verify that a GestureFlingCancel during an animation cancels it.
767 gesture_.type = WebInputEvent::GestureFlingCancel;
    [all...]
input_handler_proxy.cc 223 } else if (event.type == WebInputEvent::GestureFlingCancel) {
  /external/chromium_org/content/browser/renderer_host/
web_input_event_aura.cc 162 webkit_event.type = blink::WebInputEvent::GestureFlingCancel;
338 // All other fields are ignored on a GestureFlingCancel event.
339 gesture_event.type = blink::WebInputEvent::GestureFlingCancel;
overscroll_controller.cc 215 case blink::WebInputEvent::GestureFlingCancel:
ui_events_helper.cc 206 gesture_event.type = blink::WebInputEvent::GestureFlingCancel;
render_widget_host_view_guest.cc 42 gesture_event.type = blink::WebGestureEvent::GestureFlingCancel;
render_widget_host_view_win.cc 278 gesture_event.type = blink::WebGestureEvent::GestureFlingCancel;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
PageWidgetDelegate.cpp 162 case WebInputEvent::GestureFlingCancel:
WebPopupMenuImpl.cpp 262 case WebInputEvent::GestureFlingCancel:
  /external/chromium_org/content/common/input/
web_input_event_traits.cc 222 CASE_TYPE(GestureFlingCancel);
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
TestPlugin.cpp 518 case WebInputEvent::GestureFlingCancel: eventName = "GestureFlingCancel"; break;
EventSender.cpp 286 bindMethod("gestureFlingCancel", &EventSender::gestureFlingCancel);
    [all...]
  /external/chromium_org/content/browser/android/
content_view_core_impl.cc     [all...]

Completed in 520 milliseconds

1 2