Searched refs:touchPoints (Results 1 – 8 of 8) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
D | WebInputEventConversionTest.cpp | 363 EXPECT_FLOAT_EQ(10.6f, platformTouchBuilder.touchPoints()[0].screenPos().x()); in TEST() 364 EXPECT_FLOAT_EQ(10.4f, platformTouchBuilder.touchPoints()[0].screenPos().y()); in TEST() 365 EXPECT_FLOAT_EQ(5.3f, platformTouchBuilder.touchPoints()[0].pos().x()); in TEST() 366 EXPECT_FLOAT_EQ(5.2f, platformTouchBuilder.touchPoints()[0].pos().y()); in TEST() 367 EXPECT_FLOAT_EQ(5.3f, platformTouchBuilder.touchPoints()[0].radius().width()); in TEST() 368 EXPECT_FLOAT_EQ(5.2f, platformTouchBuilder.touchPoints()[0].radius().height()); in TEST() 562 EXPECT_FLOAT_EQ(100, platformTouchBuilder.touchPoints()[0].screenPos().x()); in TEST() 563 EXPECT_FLOAT_EQ(110, platformTouchBuilder.touchPoints()[0].screenPos().y()); in TEST() 564 EXPECT_FLOAT_EQ(30, platformTouchBuilder.touchPoints()[0].pos().x()); in TEST() 565 EXPECT_FLOAT_EQ(30, platformTouchBuilder.touchPoints()[0].pos().y()); in TEST() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorInputAgent.cpp | 184 …Event(ErrorString* error, const String& type, const RefPtr<JSONArray>& touchPoints, const int* mod… in dispatchTouchEvent() argument 204 for (iter = touchPoints->begin(); iter != touchPoints->end(); ++iter) { in dispatchTouchEvent()
|
D | InspectorInputAgent.h | 59 …hTouchEvent(ErrorString*, const String& type, const RefPtr<JSONArray>& touchPoints, const int* mod…
|
D | InspectorDOMAgent.cpp | 177 const Vector<PlatformTouchPoint>& points = event.touchPoints(); in hoveredNodeForEvent()
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | PlatformTouchEvent.h | 37 const Vector<PlatformTouchPoint>& touchPoints() const { return m_touchPoints; } in touchPoints() function
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebInputEvent.cpp | 62 WebTouchPoint touchPoints[WebTouchEvent::touchesLengthCap]; member
|
D | WebInputEventConversion.cpp | 758 static bool hasTouchPointWithId(const WebTouchPoint* touchPoints, unsigned touchPointsLength, unsig… in hasTouchPointWithId() argument 761 if (touchPoints[i].id == static_cast<int>(id)) in hasTouchPointWithId() 767 …widget, WebTouchPoint::State state, TouchList* touches, WebTouchPoint* touchPoints, unsigned* touc… in addTouchPointsIfNotYetAdded() argument 776 if (hasTouchPointWithId(touchPoints, initialTouchPointsLength, touch->identifier())) in addTouchPointsIfNotYetAdded() 779 touchPoints[pointIndex] = toWebTouchPoint(touch, renderObject, state); in addTouchPointsIfNotYetAdded()
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | EventHandler.cpp | 3529 const Vector<PlatformTouchPoint>& points = event.touchPoints(); in handleTouchEvent()
|