HomeSort by relevance Sort by last modified time
    Searched full:touchstart (Results 1 - 25 of 106) sorted by null

1 2 3 4 5

  /external/chromium_org/content/browser/renderer_host/input/
touch_emulator_unittest.cc 190 bool TouchStart(int x, int y, bool ack) {
192 WebInputEvent::TouchStart, WebTouchPoint::StatePressed, x, y, ack);
280 EXPECT_EQ("TouchStart GestureTapDown", ExpectedEvents());
292 EXPECT_EQ("TouchStart GestureTapDown", ExpectedEvents());
302 EXPECT_EQ("TouchStart GestureTapDown", ExpectedEvents());
317 EXPECT_EQ("TouchStart GestureTapDown", ExpectedEvents());
341 EXPECT_EQ("TouchStart", ExpectedEvents());
352 EXPECT_EQ("TouchStart", ExpectedEvents());
362 EXPECT_EQ("TouchStart GestureTapDown", ExpectedEvents());
381 EXPECT_EQ("TouchStart GestureTapDown", ExpectedEvents())
    [all...]
touch_event_queue_unittest.cc 274 EXPECT_EQ(WebInputEvent::TouchStart, acked_event().type);
479 // Simulate the case where the touchstart handler removes itself, and adds a
519 EXPECT_EQ(WebInputEvent::TouchStart, acked_event().type);
673 EXPECT_EQ(WebInputEvent::TouchStart, acked_event().type);
683 EXPECT_EQ(WebInputEvent::TouchStart, acked_event().type);
821 EXPECT_EQ(WebInputEvent::TouchStart, acked_event().type);
837 // TouchStart
858 // TouchCancel (first inserting a TouchStart so the TouchCancel will be sent)
877 followup_event.type = WebInputEvent::TouchStart;
    [all...]
touch_input_browsertest.cc 184 filter()->WaitForAck(WebInputEvent::TouchStart);
204 filter()->WaitForAck(WebInputEvent::TouchStart);
221 filter()->WaitForAck(WebInputEvent::TouchStart);
243 filter()->WaitForAck(WebInputEvent::TouchStart);
249 filter()->WaitForAck(WebInputEvent::TouchStart);
synthetic_gesture_target_base.cc 58 if (web_touch.type == WebInputEvent::TouchStart) {
63 << "Touch coordinates are not within content bounds on TouchStart.";
touch_action_browsertest.cc 58 " {touchstart:0, touchmove:0, touchend: 0, touchcancel:0};"
180 EXPECT_EQ(1, ExecuteScriptAndExtractInt("eventCounts.touchstart"));
202 EXPECT_EQ(1, ExecuteScriptAndExtractInt("eventCounts.touchstart"));
touch_event_queue.cc 48 return (event.type == WebInputEvent::TouchStart ||
62 // Cancels a touch sequence if a touchstart or touchmove ack response is
219 // a given slop region, unless the touchstart is preventDefault'ed.
532 // Note: Marking touchstart events as not-cancelable prevents them from
559 // that the first touchstart the renderer sees in any given sequence can
638 return (event.type == WebInputEvent::TouchStart);
708 // touchstart) after a scroll has started will interrupt the need to send a
744 if (event.type == WebInputEvent::TouchStart)
772 } else if (event.type == WebInputEvent::TouchStart) {
input_router_impl_unittest.cc 605 SendInputEventACK(WebInputEvent::TouchStart,
609 EXPECT_EQ(WebInputEvent::TouchStart,
650 SendInputEventACK(WebInputEvent::TouchStart, INPUT_EVENT_ACK_STATE_CONSUMED);
713 WebInputEvent::Type acks[] = { WebInputEvent::TouchStart,
715 WebInputEvent::TouchStart,
775 GetEventWithType(WebInputEvent::TouchStart)));
781 // Precede the TouchCancel with an appropriate TouchStart;
784 SendInputEventACK(WebInputEvent::TouchStart, INPUT_EVENT_ACK_STATE_CONSUMED);
    [all...]
synthetic_gesture_target_android.cc 55 case blink::WebInputEvent::TouchStart:
touch_event_queue.h 194 // TODO(jdduke): Consider simply tracking whether *any* touchstart had a
216 // also prevents forwarding of touchstart events for new pointers in the
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/
content_listeners.html 19 This has a touchstart listener.
touch-action-tests.js 2 document.addEventListener('touchstart', function() {});
  /external/chromium_org/content/test/data/
overscroll_navigation.html 59 document.addEventListener('touchstart', touch_start_handler);
71 document.removeEventListener('touchstart', touch_start_handler);
  /external/chromium_org/content/common/input/
web_touch_event_traits.cc 29 if (event.type != WebInputEvent::TouchStart)
64 case WebInputEvent::TouchStart:
touch_event_stream_validator.cc 98 if (event.type != WebInputEvent::TouchStart)
99 error_msg->append("Pressed touch point outside touchstart.\n");
touch_event_stream_validator_unittest.cc 139 WebInputEvent::TouchStart, WebInputEvent::TouchMove,
151 // Always start with a touchstart to reset the stream validation.
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventTypeNames.in 196 touchstart
ThreadLocalEventNames.h 34 return eventType == EventTypeNames::touchstart
  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformTouchEvent.h 32 : PlatformEvent(PlatformEvent::TouchStart)
PlatformEvent.h 70 TouchStart,
  /external/chromium_org/tools/perf/page_sets/tough_scheduling_cases/
simple_touch_drag.html 28 card.addEventListener('touchstart', onTouchStart, false);
  /external/chromium_org/ui/webui/resources/js/cr/ui/
splitter.js 71 this.addEventListener('touchstart', this.handleTouchStart_.bind(this),
95 'touchstart': endDragBound,
142 * Handles the touchstart event which starts the dragging of the splitter.
repeating_button.js 65 this.addEventListener('touchstart', this.touchStart_.bind(this));
79 // webkit generates the following event sequence: touchstart, touchend,
  /external/chromium_org/chrome/browser/resources/standalone/
standalone_hack.js 189 document.addEventListener('touchstart', function(event) {
194 // A touchstart ALWAYS preceeds a click (valid or not), so cancel any
201 // When we see a move, measure the distance from the last touchStart
213 // a touchStart without any real dragging before touchEnd - we can allow
  /external/chromium_org/ui/webui/resources/js/cr/ui/table/
table_header.js 34 this.addEventListener('touchstart',
181 * Handles the touchstart event. If the touch happened close enough
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInputAgent.cpp 187 if (type == "touchStart") {
188 convertedType = PlatformEvent::TouchStart;

Completed in 368 milliseconds

1 2 3 4 5