Searched refs:rotationAngle (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/WebKit/public/web/
H A DWebTouchPoint.h46 , rotationAngle(0)
67 float rotationAngle; member in class:blink::WebTouchPoint
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTouch.cpp47 Touch::Touch(LocalFrame* frame, EventTarget* target, unsigned identifier, const FloatPoint& screenPos, const FloatPoint& pagePos, const FloatSize& radius, float rotationAngle, float force) argument
54 , m_rotationAngle(rotationAngle)
61 Touch::Touch(EventTarget* target, unsigned identifier, const FloatPoint& clientPos, const FloatPoint& screenPos, const FloatPoint& pagePos, const FloatSize& radius, float rotationAngle, float force, LayoutPoint absoluteLocation) argument
68 , m_rotationAngle(rotationAngle)
H A DTouch.h48 const FloatSize& radius, float rotationAngle, float force)
51 new Touch(frame, target, identifier, screenPos, pagePos, radius, rotationAngle, force));
81 const FloatSize& radius, float rotationAngle, float force);
85 const FloatSize& radius, float rotationAngle, float force, LayoutPoint absoluteLocation);
46 create(LocalFrame* frame, EventTarget* target, unsigned identifier, const FloatPoint& screenPos, const FloatPoint& pagePos, const FloatSize& radius, float rotationAngle, float force) argument
H A DDocument.cpp5233 PassRefPtrWillBeRawPtr<Touch> Document::createTouch(LocalDOMWindow* window, EventTarget* target, int identifier, double pageX, double pageY, double screenX, double screenY, double radiusX, double radiusY, float rotationAngle, float force) const argument
5249 if (!std::isfinite(rotationAngle))
5250 rotationAngle = 0;
5259 return Touch::create(frame, target, identifier, FloatPoint(screenX, screenY), FloatPoint(pageX, pageY), FloatSize(radiusX, radiusY), rotationAngle, force);
H A DDocument.h933 PassRefPtrWillBeRawPtr<Touch> createTouch(LocalDOMWindow*, EventTarget*, int identifier, double pageX, double pageY, double screenX, double screenY, double radiusX, double radiusY, float rotationAngle, float force) const;
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPlatformTouchPoint.h51 float rotationAngle() const { return m_rotationAngle; } function in class:blink::PlatformTouchPoint
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorInputAgent.cpp55 SyntheticInspectorTouchPoint(unsigned id, State state, const blink::IntPoint& screenPos, const blink::IntPoint& pos, int radiusX, int radiusY, double rotationAngle, double force) argument
62 m_rotationAngle = rotationAngle;
208 double rotationAngle, force; local
226 if (!pointObj->getNumber("rotationAngle", &rotationAngle))
227 rotationAngle = 0.0f;
263 SyntheticInspectorTouchPoint point(id++, convertedState, globalPoint, convertedPoint, radiusX, radiusY, rotationAngle, force);
/external/chromium_org/content/renderer/pepper/
H A Devent_conversion_unittest.cc33 EXPECT_EQ(expected.touches[i].rotationAngle,
34 actual.touches[j].rotationAngle);
H A Devent_conversion.cc243 pp_pt.rotation_angle = touch_point.rotationAngle;
281 pt.rotationAngle = pp_pt.rotation_angle;
/external/chromium_org/content/browser/renderer_host/input/
H A Dmotion_event_web.cc124 float rotation_angle_rad = event_.touches[pointer_index].rotationAngle
H A Dweb_input_event_util.cc225 touch.rotationAngle = orientation_deg;
229 touch.rotationAngle = orientation_deg + 90;
H A Dtouch_emulator.cc428 point.rotationAngle = 0.f;
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebInputEventConversionTest.cpp122 p0.rotationAngle = p1.rotationAngle = 1.f;
125 RefPtrWillBeRawPtr<Touch> touch0 = Touch::create(toLocalFrame(webViewImpl->page()->mainFrame()), document.get(), p0.id, p0.screenPosition, p0.position, FloatSize(p0.radiusX, p0.radiusY), p0.rotationAngle, p0.force);
126 RefPtrWillBeRawPtr<Touch> touch1 = Touch::create(toLocalFrame(webViewImpl->page()->mainFrame()), document.get(), p1.id, p1.screenPosition, p1.position, FloatSize(p1.radiusX, p1.radiusY), p1.rotationAngle, p1.force);
144 EXPECT_FLOAT_EQ(p0.rotationAngle, webTouchBuilder.touches[0].rotationAngle);
205 RefPtrWillBeRawPtr<Touch> touch = Touch::create(toLocalFrame(webViewImpl->page()->mainFrame()), document.get(), i, p0.screenPosition, p0.position, FloatSize(p0.radiusX, p0.radiusY), p0.rotationAngle, p0.force);
/external/chromium_org/content/browser/renderer_host/
H A Dui_events_helper.cc140 point.rotationAngle,
284 point->rotationAngle = event.rotation_angle();
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebInputEventConversion.cpp437 m_rotationAngle = point.rotationAngle;
752 point.rotationAngle = touch->webkitRotationAngle();
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DEventHandler.cpp3709 targetFrame, touchTarget.get(), point.id(), point.screenPos(), adjustedPagePoint, adjustedRadius, point.rotationAngle(), point.force());

Completed in 1826 milliseconds