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

  /external/chromium_org/third_party/WebKit/Source/core/events/
TouchEventContext.cpp 32 #include "core/events/TouchEvent.h"
53 TouchEvent* touchEvent = toTouchEvent(event);
54 touchEvent->setTouches(m_touches);
55 touchEvent->setTargetTouches(m_targetTouches);
56 touchEvent->setChangedTouches(m_changedTouches);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
LinkHighlightTest.cpp 57 GestureEventWithHitTestResults getTargetedEvent(WebViewImpl* webViewImpl, WebGestureEvent& touchEvent)
59 PlatformGestureEventBuilder platformEvent(webViewImpl->mainFrameImpl()->frameView(), touchEvent);
76 WebGestureEvent touchEvent;
77 touchEvent.type = WebInputEvent::GestureShowPress;
80 touchEvent.x = 20;
81 touchEvent.y = 20;
83 ASSERT_TRUE(webViewImpl->bestTapNode(getTargetedEvent(webViewImpl, touchEvent)));
85 touchEvent.y = 40;
86 EXPECT_FALSE(webViewImpl->bestTapNode(getTargetedEvent(webViewImpl, touchEvent)));
88 touchEvent.y = 20
    [all...]
WebInputEventConversionTest.cpp 40 #include "core/events/TouchEvent.h"
90 RefPtrWillBeRawPtr<TouchEvent> event = TouchEvent::create();
132 RefPtrWillBeRawPtr<TouchEvent> touchEvent = TouchEvent::create(touchList.get(), touchList.get(), touchList.get(), EventTypeNames::touchstart, domWindow, false, false, false, false, false);
134 WebTouchEventBuilder webTouchBuilder(view, documentRenderView, *touchEvent);
155 RefPtrWillBeRawPtr<TouchEvent> touchEvent = TouchEvent::create(activeTouchList.get(), activeTouchList.get(), movedTouchList.get(), EventTypeNames::touchm (…)
    [all...]
WebViewTest.cpp     [all...]
  /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) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
KeyboardAccessibilityDelegate.java 275 final MotionEvent touchEvent = MotionEvent.obtain(
277 mKeyboardView.onTouchEvent(touchEvent);
278 touchEvent.recycle();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
HitTestRequest.h 37 TouchEvent = 1 << 7,
56 bool touchEvent() const { return m_requestType & TouchEvent; }
57 bool mouseEvent() const { return !touchEvent(); }
63 bool touchMove() const { return move() && touchEvent(); }
64 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/app/src/android/app/cts/
TestDialog.java 79 public MotionEvent touchEvent;
316 touchEvent = ev;
  /external/chromium_org/third_party/WebKit/Source/web/
WebDevToolsAgentImpl.cpp 355 PlatformTouchEvent touchEvent = PlatformTouchEventBuilder(page->deprecatedLocalMainFrame()->view(), static_cast<const WebTouchEvent&>(inputEvent));
356 return ic->handleTouchEvent(toLocalFrame(page->mainFrame()), touchEvent);
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.cpp 52 #include "core/events/TouchEvent.h"
    [all...]

Completed in 481 milliseconds