HomeSort by relevance Sort by last modified time
    Searched defs:touchEvent (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
EventContext.cpp 35 #include "core/dom/TouchEvent.h"
120 TouchEvent* touchEvent = toTouchEvent(event);
121 touchEvent->setTouches(m_touches);
122 touchEvent->setTargetTouches(m_targetTouches);
123 touchEvent->setChangedTouches(m_changedTouches);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
LinkHighlightTest.cpp 68 WebGestureEvent touchEvent;
69 touchEvent.type = WebInputEvent::GestureTapDown;
72 touchEvent.x = 20;
73 touchEvent.y = 20;
76 PlatformGestureEventBuilder platformEvent(webViewImpl->mainFrameImpl()->frameView(), touchEvent);
81 touchEvent.y = 40;
83 PlatformGestureEventBuilder platformEvent(webViewImpl->mainFrameImpl()->frameView(), touchEvent);
87 touchEvent.y = 20;
91 PlatformGestureEventBuilder platformEvent(webViewImpl->mainFrameImpl()->frameView(), touchEvent);
101 touchEvent.y = 100
    [all...]
WebInputEventConversionTest.cpp 45 #include "core/dom/TouchEvent.h"
88 RefPtr<WebCore::TouchEvent> event = WebCore::TouchEvent::create();
269 RefPtr<TouchEvent> touchEvent = TouchEvent::create(touchList.get(), touchList.get(), touchList.get(), WebCore::eventNames().touchmoveEvent, domWindow, 10, 10, 10, 10, false, false, false, false);
271 WebTouchEventBuilder webTouchBuilder(view, docRenderer, *touchEvent);
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SceneGraphView.java 91 mRender.touchEvent((int)ev.getX(), (int)ev.getY());
SceneGraphRS.java 73 public void touchEvent(int x, int y) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
HitTestRequest.h 37 TouchEvent = 1 << 7,
58 bool touchEvent() const { return m_requestType & TouchEvent; }
59 bool mouseEvent() const { return !touchEvent(); }
67 bool touchMove() const { return move() && touchEvent(); }
68 bool touchRelease() const { return release() && touchEvent(); }
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
GalleryActivity.java 269 MotionEvent touchEvent = MotionEvent.obtain(event.getDownTime(),
271 return dispatchTouchEvent(touchEvent);
  /cts/tests/src/android/app/cts/
TestDialog.java 79 public MotionEvent touchEvent;
316 touchEvent = ev;
  /external/chromium_org/third_party/WebKit/Source/web/
WebDevToolsAgentImpl.cpp 485 PlatformTouchEvent touchEvent = PlatformTouchEventBuilder(page->mainFrame()->view(), *static_cast<const WebTouchEvent*>(&inputEvent));
486 return ic->handleTouchEvent(page->mainFrame(), touchEvent);
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.cpp 44 #include "core/dom/TouchEvent.h"
    [all...]

Completed in 990 milliseconds