Home
last modified time | relevance | path

Searched refs:m_touchPoints (Results 1 – 14 of 14) sorted by relevance

/external/webkit/Tools/QtTestBrowser/
Dlauncherwindow.cpp455 if (m_touchPoints.isEmpty()) in sendTouchEvent()
459 if (m_touchPoints.size() == 1) { in sendTouchEvent()
460 if (m_touchPoints[0].state() == Qt::TouchPointReleased) in sendTouchEvent()
462 else if (m_touchPoints[0].state() == Qt::TouchPointPressed) in sendTouchEvent()
467 touchEv.setTouchPoints(m_touchPoints); in sendTouchEvent()
471 if (m_touchPoints[0].state() == Qt::TouchPointReleased) in sendTouchEvent()
472 m_touchPoints.removeAt(0); in sendTouchEvent()
473 if (m_touchPoints.size() > 1 && m_touchPoints[1].state() == Qt::TouchPointReleased) in sendTouchEvent()
474 m_touchPoints.removeAt(1); in sendTouchEvent()
518 if (m_touchPoints.size() > 0 && !m_touchPoints[0].id()) in eventFilter()
[all …]
Dlauncherwindow.h238 QList<QTouchEvent::TouchPoint> m_touchPoints; variable
/external/webkit/Tools/DumpRenderTree/qt/
DEventSenderQt.cpp400 int index = m_touchPoints.count(); in addTouchPoint()
401 int id = m_touchPoints.isEmpty() ? 0 : m_touchPoints.last().id() + 1; in addTouchPoint()
403 m_touchPoints.append(point); in addTouchPoint()
405 m_touchPoints[index].setState(Qt::TouchPointPressed); in addTouchPoint()
410 if (index < 0 || index >= m_touchPoints.count()) in updateTouchPoint()
413 QTouchEvent::TouchPoint &p = m_touchPoints[index]; in updateTouchPoint()
452 for (int i = 0; i < m_touchPoints.count(); ++i) in touchEnd()
453 if (m_touchPoints[i].state() != Qt::TouchPointReleased) { in touchEnd()
463 m_touchPoints.clear(); in clearTouchPoints()
470 if (index < 0 || index >= m_touchPoints.count()) in releaseTouchPoint()
[all …]
DEventSenderQt.h108 QList<QTouchEvent::TouchPoint> m_touchPoints; variable
/external/webkit/Source/WebKit2/Shared/
DWebTouchEvent.cpp38 , m_touchPoints(touchPoints) in WebTouchEvent()
51 encoder->encode(CoreIPC::In(m_touchPoints)); in encode()
59 return decoder->decode(CoreIPC::Out(t.m_touchPoints)); in decode()
DWebEvent.h314 const Vector<WebPlatformTouchPoint>& touchPoints() const { return m_touchPoints; } in touchPoints()
322 Vector<WebPlatformTouchPoint> m_touchPoints; variable
DWebEventConversion.cpp254 m_touchPoints.append(WebKit2PlatformTouchPoint(webEvent.touchPoints().at(i))); in WebKit2PlatformTouchEvent()
/external/webkit/Source/WebCore/platform/android/
DPlatformTouchEventAndroid.cpp47 m_touchPoints.reserveCapacity(windowPoints.size()); in PlatformTouchEvent()
49 m_touchPoints.append(PlatformTouchPoint(ids[c], windowPoints[c], states[c])); in PlatformTouchEvent()
/external/webkit/Source/WebCore/platform/
DPlatformTouchEvent.h80 const Vector<PlatformTouchPoint>& touchPoints() const { return m_touchPoints; } in touchPoints()
92 Vector<PlatformTouchPoint> m_touchPoints; variable
/external/webkit/Source/WebKit2/Shared/qt/
DWebEventFactoryQt.cpp177 Vector<WebPlatformTouchPoint> m_touchPoints; in createWebTouchEvent() local
198m_touchPoints.append(WebPlatformTouchPoint(id, state, points.at(i).screenPos().toPoint(), points.a… in createWebTouchEvent()
206 …return WebTouchEvent(type, m_touchPoints, m_ctrlKey, m_altKey, m_shiftKey, m_metaKey, modifiers, t… in createWebTouchEvent()
/external/webkit/Source/WebCore/platform/qt/
DPlatformTouchEventQt.cpp40 m_touchPoints.append(PlatformTouchPoint(points.at(i))); in PlatformTouchEvent()
/external/webkit/Source/WebCore/platform/efl/
DPlatformTouchEventEfl.cpp66 m_touchPoints.append(PlatformTouchPoint(p->id, pnt, state)); in PlatformTouchEvent()
/external/webkit/Source/WebCore/platform/brew/
DPlatformTouchEventBrew.cpp66 m_touchPoints.append(PlatformTouchPoint(id, windowPos, state)); in PlatformTouchEvent()
/external/webkit/Source/WebKit/chromium/src/
DWebInputEventConversion.cpp227 m_touchPoints.append(PlatformTouchPointBuilder(widget, event.touchPoints[i])); in PlatformTouchEventBuilder()