Searched refs:touchPoint (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Tools/DumpRenderTree/chromium/
H A DEventSender.cpp844 WebTouchPoint touchPoint; local
845 touchPoint.state = WebTouchPoint::StatePressed;
846 touchPoint.position = WebPoint(arguments[0].toInt32(), arguments[1].toInt32());
847 touchPoint.screenPosition = touchPoint.position;
848 touchPoint.id = touchPoints.size();
849 touchPoints.append(touchPoint);
865 WebTouchPoint* touchPoint = &touchPoints[index];
866 touchPoint->state = WebTouchPoint::StateReleased;
898 WebTouchPoint* touchPoint
[all...]
/external/webkit/Tools/QtTestBrowser/
H A Dlauncherwindow.cpp504 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;
521 m_touchPoints[1] = touchPoint;
539 QTouchEvent::TouchPoint touchPoint; local
[all...]
/external/webkit/Source/WebCore/plugins/android/
H A DPluginViewAndroid.cpp243 // set each touchPoint
246 evt.data.multiTouch.touchPoint = new TouchPoint[pointerCount];
253 evt.data.multiTouch.touchPoint[x].id = touch->identifier();
254 evt.data.multiTouch.touchPoint[x].x = localPos.x();
255 evt.data.multiTouch.touchPoint[x].y = localPos.y();
256 evt.data.multiTouch.touchPoint[x].pressure = 1; // TODO
257 evt.data.multiTouch.touchPoint[x].size = 1; // TODO
264 delete[] evt.data.multiTouch.touchPoint;
/external/webkit/Source/WebKit/android/plugins/
H A Dandroid_npapi.h1007 TouchPoint* touchPoint; member in struct:ANPEvent::__anon14753::__anon14761
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebpage.cpp1573 IntPoint QWebPagePrivate::TouchAdjuster::findCandidatePointForTouch(const IntPoint& touchPoint, Document* document) const argument
1578 int x = touchPoint.x();
1579 int y = touchPoint.y();
1626 IntPoint newTouchPoint = touchPoint;

Completed in 140 milliseconds