HomeSort by relevance Sort by last modified time
    Searched refs:TouchAction (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/content/browser/renderer_host/input/
touch_action_filter.h 32 void OnSetTouchAction(content::TouchAction touch_action);
40 TouchAction allowed_touch_action() const { return allowed_touch_action_; }
42 // Return the intersection of two TouchAction values.
43 static TouchAction Intersect(TouchAction ta1, TouchAction ta2);
66 TouchAction allowed_touch_action_;
touch_action_filter.cc 141 void TouchActionFilter::OnSetTouchAction(TouchAction touch_action) {
183 TouchAction TouchActionFilter::Intersect(TouchAction ta1, TouchAction ta2) {
194 return static_cast<TouchAction>(ta1 & ta2);
input_router_impl.h 157 void OnSetTouchAction(TouchAction touch_action);
input_router_impl.cc 513 void InputRouterImpl::OnSetTouchAction(TouchAction touch_action) {
input_router_impl_unittest.cc 307 void OnSetTouchAction(content::TouchAction touch_action) {
    [all...]
  /external/chromium_org/content/common/input/
touch_action.h 13 enum TouchAction {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyleConstants.h 491 enum TouchAction {
498 inline TouchAction operator| (TouchAction a, TouchAction b) { return TouchAction(int(a) | int(b)); }
499 inline TouchAction& operator|= (TouchAction& a, TouchAction b) { return a = a | b; }
500 inline TouchAction operator& (TouchAction a, TouchAction b) { return TouchAction(int(a) & int(b));
    [all...]
RenderStyle.h     [all...]
  /external/chromium_org/content/common/
input_messages.h 48 IPC_ENUM_TRAITS_VALIDATE(content::TouchAction, (
203 content::TouchAction /* touch_action */)
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.h 248 TouchAction intersectTouchAction(const TouchAction, const TouchAction);
249 TouchAction computeEffectiveTouchAction(const Node&);
ChromeClient.h 198 virtual void setTouchAction(TouchAction) = 0;
EventHandler.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
ChromeClientImpl.h 143 virtual void setTouchAction(WebCore::TouchAction) OVERRIDE;
ChromeClientImpl.cpp 782 void ChromeClientImpl::setTouchAction(TouchAction touchAction)
785 WebTouchAction webTouchAction = static_cast<WebTouchAction>(touchAction);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
EmptyClients.h 157 virtual void setTouchAction(TouchAction touchAction) OVERRIDE { };
  /prebuilts/devtools/tools/lib/
monkeyrunner.jar 
  /external/chromium_org/content/renderer/
render_widget.cc     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleBuilderCustom.cpp 806 TouchAction action = RenderStyle::initialTouchAction()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp     [all...]
CSSPrimitiveValueMappings.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObject.cpp     [all...]

Completed in 465 milliseconds