Home
last modified time | relevance | path

Searched refs:TOUCH_ACTION_PAN_Y (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/content/common/input/
Dtouch_action.h22 TOUCH_ACTION_PAN_Y = 1 << 2, enumerator
24 TOUCH_ACTION_PAN_X_Y = TOUCH_ACTION_PAN_X | TOUCH_ACTION_PAN_Y,
/external/chromium_org/content/browser/renderer_host/input/
Dtouch_action_filter.cc41 } else if (allowed_touch_action_ == TOUCH_ACTION_PAN_Y) { in FilterGestureEvent()
54 if (allowed_touch_action_ == TOUCH_ACTION_PAN_Y) in FilterGestureEvent()
180 return !(allowed_touch_action_ & TOUCH_ACTION_PAN_Y); in ShouldSuppressScroll()
Dtouch_action_filter_unittest.cc210 filter.OnSetTouchAction(TOUCH_ACTION_PAN_Y); in TEST()
228 filter.OnSetTouchAction(TOUCH_ACTION_PAN_Y); in TEST()
255 filter.OnSetTouchAction(TOUCH_ACTION_PAN_Y); in TEST()
329 EXPECT_EQ(TOUCH_ACTION_PAN_Y, in TEST()
330 TouchActionFilter::Intersect(TOUCH_ACTION_PAN_Y, TOUCH_ACTION_AUTO)); in TEST()
335 EXPECT_EQ(TOUCH_ACTION_PAN_Y, in TEST()
336 TouchActionFilter::Intersect(TOUCH_ACTION_PAN_Y, TOUCH_ACTION_PAN_X_Y)); in TEST()
340 TouchActionFilter::Intersect(TOUCH_ACTION_PAN_X, TOUCH_ACTION_PAN_Y)); in TEST()
369 filter.OnSetTouchAction(TOUCH_ACTION_PAN_Y); in TEST()
Dinput_router_impl_unittest.cc1073 OnSetTouchAction(TOUCH_ACTION_PAN_Y); in TEST_F()
/external/chromium_org/content/renderer/
Drender_widget.cc2119 COMPILE_ASSERT(static_cast<blink::WebTouchAction>(TOUCH_ACTION_PAN_Y) == in setTouchAction()