Home
last modified time | relevance | path

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

/external/webkit/Tools/DumpRenderTree/chromium/
DEventSender.cpp844 WebTouchPoint touchPoint; in addTouchPoint() local
845 touchPoint.state = WebTouchPoint::StatePressed; in addTouchPoint()
846 touchPoint.position = WebPoint(arguments[0].toInt32(), arguments[1].toInt32()); in addTouchPoint()
847 touchPoint.screenPosition = touchPoint.position; in addTouchPoint()
848 touchPoint.id = touchPoints.size(); in addTouchPoint()
849 touchPoints.append(touchPoint); in addTouchPoint()
865 WebTouchPoint* touchPoint = &touchPoints[index]; in releaseTouchPoint() local
866 touchPoint->state = WebTouchPoint::StateReleased; in releaseTouchPoint()
898 WebTouchPoint* touchPoint = &touchPoints[index]; in updateTouchPoint() local
899 touchPoint->state = WebTouchPoint::StateMoved; in updateTouchPoint()
[all …]
/external/webkit/Tools/QtTestBrowser/
Dlauncherwindow.cpp504 QTouchEvent::TouchPoint touchPoint; in eventFilter() local
505 touchPoint.setState(Qt::TouchPointMoved); in eventFilter()
508 touchPoint.setState(Qt::TouchPointPressed); in eventFilter()
510 touchPoint.setState(Qt::TouchPointReleased); in eventFilter()
512 touchPoint.setId(0); in eventFilter()
513 touchPoint.setScreenPos(ev->globalPos()); in eventFilter()
514 touchPoint.setPos(ev->pos()); in eventFilter()
515 touchPoint.setPressure(1); in eventFilter()
519 m_touchPoints[0] = touchPoint; in eventFilter()
521 m_touchPoints[1] = touchPoint; in eventFilter()
[all …]
/external/webkit/Source/WebCore/plugins/android/
DPluginViewAndroid.cpp247 evt.data.multiTouch.touchPoint = new TouchPoint[pointerCount]; in handleTouchEvent()
254 evt.data.multiTouch.touchPoint[x].id = touch->identifier(); in handleTouchEvent()
255 evt.data.multiTouch.touchPoint[x].x = localPos.x(); in handleTouchEvent()
256 evt.data.multiTouch.touchPoint[x].y = localPos.y(); in handleTouchEvent()
257 evt.data.multiTouch.touchPoint[x].pressure = 1; // TODO in handleTouchEvent()
258 evt.data.multiTouch.touchPoint[x].size = 1; // TODO in handleTouchEvent()
265 delete[] evt.data.multiTouch.touchPoint; in handleTouchEvent()
/external/webkit/Source/WebKit/android/plugins/
Dandroid_npapi.h1007 TouchPoint* touchPoint; member
/external/webkit/Source/WebKit/qt/Api/
Dqwebpage.cpp1573 IntPoint QWebPagePrivate::TouchAdjuster::findCandidatePointForTouch(const IntPoint& touchPoint, Doc… in findCandidatePointForTouch() argument
1578 int x = touchPoint.x(); in findCandidatePointForTouch()
1579 int y = touchPoint.y(); in findCandidatePointForTouch()
1626 IntPoint newTouchPoint = touchPoint; in findCandidatePointForTouch()