OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
248
// set each
touchPoint
251
evt.data.multiTouch.
touchPoint
= new
TouchPoint
[pointerCount];
258
evt.data.multiTouch.
touchPoint
[x].id = touch->identifier();
259
evt.data.multiTouch.
touchPoint
[x].x = localPos.x();
260
evt.data.multiTouch.
touchPoint
[x].y = localPos.y();
261
evt.data.multiTouch.
touchPoint
[x].pressure = 1; // TODO
262
evt.data.multiTouch.
touchPoint
[x].size = 1; // TODO
269
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 140 milliseconds