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

  /external/webkit/Tools/DumpRenderTree/chromium/
EventSender.cpp 844 WebTouchPoint touchPoint;
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 = &touchPoints[index]
    [all...]
  /external/webkit/Tools/QtTestBrowser/
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...]
  /external/webkit/Source/WebCore/plugins/android/
PluginViewAndroid.cpp 243 // 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/
android_npapi.h     [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebpage.cpp     [all...]

Completed in 838 milliseconds