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

1 2

  /external/chromium_org/content/browser/renderer_host/input/
touchpad_tap_suppression_controller.cc 17 void TouchpadTapSuppressionController::GestureFlingCancel() {
18 controller_.GestureFlingCancel();
touchpad_tap_suppression_controller.h 26 // of a GestureFlingCancel event.
35 // Should be called on arrival of GestureFlingCancel events.
36 void GestureFlingCancel();
38 // Should be called on arrival of ACK for a GestureFlingCancel event.
39 // |processed| is true if the GestureFlingCancel successfully stopped a fling.
touchscreen_tap_suppression_controller.h 18 // dispatch of a GestureFlingCancel event.
27 // Should be called on arrival of GestureFlingCancel events.
28 void GestureFlingCancel();
30 // Should be called on arrival of ACK for a GestureFlingCancel event.
31 // |processed| is true if the GestureFlingCancel successfully stopped a fling.
touchscreen_tap_suppression_controller.cc 21 void TouchscreenTapSuppressionController::GestureFlingCancel() {
22 controller_.GestureFlingCancel();
tap_suppression_controller.h 17 // immediately following a GestureFlingCancel event (caused by the same tap).
19 // GestureFlingCancel are suppressed.
28 // The maximum time allowed between a GestureFlingCancel and its
40 // Should be called whenever a GestureFlingCancel event is received.
41 void GestureFlingCancel();
43 // Should be called whenever an ACK for a GestureFlingCancel event is
44 // received. |processed| is true when the GestureFlingCancel actually stopped
gesture_event_queue.cc 52 if (it->event.type == WebInputEvent::GestureFlingCancel)
104 return gesture_event.event.type != WebInputEvent::GestureFlingCancel ||
111 case WebInputEvent::GestureFlingCancel:
114 touchscreen_tap_suppression_controller_.GestureFlingCancel();
116 touchpad_tap_suppression_controller_.GestureFlingCancel();
138 case WebInputEvent::GestureFlingCancel:
186 if (type == WebInputEvent::GestureFlingCancel) {
tap_suppression_controller.cc 30 void TapSuppressionController::GestureFlingCancel() {
gesture_event_queue_unittest.cc     [all...]
tap_suppression_controller_unittest.cc 46 GestureFlingCancel();
116 using TapSuppressionController::GestureFlingCancel;
159 // Test TapSuppressionController for when GestureFlingCancel Ack comes before
162 // Send GestureFlingCancel.
169 // Send GestureFlingCancel Ack.
192 // Test TapSuppressionController for when GestureFlingCancel Ack comes before
195 // Send GestureFlingCancel.
202 // Send GestureFlingCancel Ack.
233 // Test TapSuppressionController for when GestureFlingCancel Ack comes before
236 // Send GestureFlingCancel
    [all...]
touch_emulator.cc 260 case WebInputEvent::GestureFlingCancel:
web_input_event_util.cc 302 gesture.type = WebInputEvent::GestureFlingCancel;
  /external/chromium_org/content/renderer/input/
input_handler_proxy_unittest.cc 244 gesture_.type = WebInputEvent::GestureFlingCancel;
495 // Verify that a GestureFlingCancel during an animation cancels it.
496 gesture_.type = WebInputEvent::GestureFlingCancel;
521 gesture_.type = WebInputEvent::GestureFlingCancel;
542 gesture_.type = WebInputEvent::GestureFlingCancel;
647 // next GestureFlingCancel to the main
650 gesture_.type = WebInputEvent::GestureFlingCancel;
753 // next GestureFlingCancel to the main
756 gesture_.type = WebInputEvent::GestureFlingCancel;
    [all...]
input_handler_proxy.cc 321 } else if (event.type == WebInputEvent::GestureFlingCancel) {
452 if (gesture_event.type == WebInputEvent::GestureFlingCancel) {
  /external/chromium_org/content/browser/renderer_host/
web_input_event_aura.cc 171 webkit_event.type = blink::WebInputEvent::GestureFlingCancel;
350 // All other fields are ignored on a GestureFlingCancel event.
351 gesture_event.type = blink::WebInputEvent::GestureFlingCancel;
overscroll_controller.cc 196 case blink::WebInputEvent::GestureFlingCancel:
ui_events_helper.cc 204 gesture_event.type = blink::WebInputEvent::GestureFlingCancel;
  /external/chromium_org/content/shell/renderer/test_runner/
event_sender.h 114 void GestureFlingCancel();
event_sender.cc 348 void GestureFlingCancel();
475 .SetMethod("gestureFlingCancel", &EventSenderBindings::GestureFlingCancel)
660 void EventSenderBindings::GestureFlingCancel() {
662 sender_->GestureFlingCancel();
    [all...]
TestPlugin.cpp 609 case WebInputEvent::GestureFlingCancel: eventName = "GestureFlingCancel"; break;
  /external/chromium_org/third_party/WebKit/Source/web/
PageWidgetDelegate.cpp 147 case WebInputEvent::GestureFlingCancel:
WebPopupMenuImpl.cpp 299 case WebInputEvent::GestureFlingCancel:
  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 118 GestureFlingCancel,
  /external/chromium_org/content/browser/frame_host/
render_widget_host_view_guest.cc 39 gesture_event.type = blink::WebGestureEvent::GestureFlingCancel;
  /external/chromium_org/content/common/input/
web_input_event_traits.cc 281 CASE_TYPE(GestureFlingCancel);
  /external/chromium_org/content/browser/android/
content_view_core_impl.cc 120 case WebInputEvent::GestureFlingCancel:
534 case WebInputEvent::GestureFlingCancel:
    [all...]

Completed in 172 milliseconds

1 2