OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:touchPoints
(Results
1 - 11
of
11
) sorted by null
/external/webkit/Source/WebKit2/Shared/
WebTouchEvent.cpp
36
WebTouchEvent::WebTouchEvent(WebEvent::Type type, Vector<WebPlatformTouchPoint>
touchPoints
, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, Modifiers modifiers, double timestamp)
38
, m_touchPoints(
touchPoints
)
WebEventConversion.cpp
253
for (int i = 0; i < webEvent.
touchPoints
().size(); ++i)
254
m_touchPoints.append(WebKit2PlatformTouchPoint(webEvent.
touchPoints
().at(i)));
WebEvent.h
314
const Vector<WebPlatformTouchPoint>&
touchPoints
() const { return m_touchPoints; }
/external/webkit/Source/WebCore/platform/qt/
PlatformTouchEventQt.cpp
38
const QList<QTouchEvent::TouchPoint>& points = event->
touchPoints
();
/external/webkit/Tools/DumpRenderTree/chromium/
EventSender.cpp
96
static Vector<WebTouchPoint>
touchPoints
;
324
touchPoints
.clear();
848
touchPoint.id =
touchPoints
.size();
849
touchPoints
.append(touchPoint);
855
touchPoints
.clear();
863
ASSERT(index <
touchPoints
.size());
865
WebTouchPoint* touchPoint = &
touchPoints
[index];
895
ASSERT(index <
touchPoints
.size());
898
WebTouchPoint* touchPoint = &
touchPoints
[index];
[
all
...]
/external/webkit/Source/WebCore/platform/
PlatformTouchEvent.h
82
const Vector<PlatformTouchPoint>&
touchPoints
() const { return m_touchPoints; }
/external/webkit/Source/WebKit/chromium/public/
WebInputEvent.h
311
WebTouchPoint
touchPoints
[touchPointsLengthCap];
/external/chromium/chrome/browser/renderer_host/
render_widget_host_view_views.cc
514
point = &touch_event_.
touchPoints
[touch_event_.touchPointsLength++];
539
point = touch_event_.
touchPoints
+ i;
572
WebKit::WebTouchPoint* iter = touch_event_.
touchPoints
+ i;
588
for (int i = point - touch_event_.
touchPoints
;
591
touch_event_.
touchPoints
[i] = touch_event_.
touchPoints
[i + 1];
/external/webkit/Source/WebKit2/Shared/qt/
WebEventFactoryQt.cpp
175
const QList<QTouchEvent::TouchPoint>& points = event->
touchPoints
();
/external/webkit/Source/WebKit/chromium/src/
WebInputEventConversion.cpp
227
m_touchPoints.append(PlatformTouchPointBuilder(widget, event.
touchPoints
[i]));
/external/webkit/Source/WebCore/page/
EventHandler.cpp
[
all
...]
Completed in 913 milliseconds