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

  /external/webkit/Source/WebCore/platform/qt/
PlatformTouchPointQt.cpp 30 PlatformTouchPoint::PlatformTouchPoint(const QTouchEvent::TouchPoint& point)
32 // The QTouchEvent::TouchPoint API states that ids will be >= 0.
PlatformTouchEventQt.cpp 38 const QList<QTouchEvent::TouchPoint>& points = event->touchPoints();
  /external/webkit/Source/WebCore/platform/
PlatformTouchPoint.h 48 PlatformTouchPoint(const QTouchEvent::TouchPoint&);
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
EventSenderImpl.java 80 public static class TouchPoint {
88 public TouchPoint(int id, Point point) {
143 private List<TouchPoint> mTouchPoints;
222 new TouchPoint(id, createViewPointFromContentCoordinates(msg.arg1, msg.arg2)));
240 Log.w(LOG_TAG + "::MSG_UPDATE_TOUCH_POINT", "TouchPoint out of bounds: "
265 Log.w(LOG_TAG + "::MSG_RELEASE_TOUCH_POINT", "TouchPoint out of bounds: "
286 Log.w(LOG_TAG + "::MSG_RELEASE_TOUCH_POINT", "TouchPoint out of bounds: "
446 private List<TouchPoint> getTouchPoints() {
448 mTouchPoints = new LinkedList<TouchPoint>();
  /external/webkit/Tools/DumpRenderTree/qt/
EventSenderQt.h 108 QList<QTouchEvent::TouchPoint> m_touchPoints;
EventSenderQt.cpp 402 QTouchEvent::TouchPoint point(id);
413 QTouchEvent::TouchPoint &p = m_touchPoints[index];
481 QList<QTouchEvent::TouchPoint>::Iterator it = m_touchPoints.begin();
  /external/webkit/Tools/QtTestBrowser/
launcherwindow.h 238 QList<QTouchEvent::TouchPoint> m_touchPoints;
launcherwindow.cpp 504 QTouchEvent::TouchPoint touchPoint;
505 touchPoint.setState(Qt::TouchPointMoved);
508 touchPoint.setState(Qt::TouchPointPressed);
510 touchPoint.setState(Qt::TouchPointReleased);
512 touchPoint.setId(0);
513 touchPoint.setScreenPos(ev->globalPos());
514 touchPoint.setPos(ev->pos());
515 touchPoint.setPressure(1);
519 m_touchPoints[0] = touchPoint;
    [all...]
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
WebViewEventSender.java 35 mTouchPoints = new Vector<TouchPoint>();
208 TouchPoint tp = mTouchPoints.get(i);
253 TouchPoint tp = mTouchPoints.get(i);
272 TouchPoint tp = mTouchPoints.get(i);
295 TouchPoint tp = mTouchPoints.get(id);
312 mTouchPoints.add(new TouchPoint(id, contentsToWindowX(x), contentsToWindowY(y)));
316 TouchPoint tp = mTouchPoints.get(i);
343 TouchPoint tp = mTouchPoints.get(id);
371 private class TouchPoint {
380 public TouchPoint(int id, int x, int y)
    [all...]
  /external/webkit/Source/WebKit/android/plugins/
android_npapi.h     [all...]
  /external/webkit/Source/WebKit2/Shared/qt/
WebEventFactoryQt.cpp 175 const QList<QTouchEvent::TouchPoint>& points = event->touchPoints();
  /external/webkit/Source/WebCore/plugins/android/
PluginViewAndroid.cpp 242 // set each touchPoint
245 evt.data.multiTouch.touchPoint = new TouchPoint[pointerCount];
252 evt.data.multiTouch.touchPoint[x].id = touch->identifier();
253 evt.data.multiTouch.touchPoint[x].x = localPos.x();
254 evt.data.multiTouch.touchPoint[x].y = localPos.y();
255 evt.data.multiTouch.touchPoint[x].pressure = 1; // TODO
256 evt.data.multiTouch.touchPoint[x].size = 1; // TODO
263 delete[] evt.data.multiTouch.touchPoint;

Completed in 1395 milliseconds