Searched defs:rotationAngle (Results 1 - 6 of 6) sorted by relevance

/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);
/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/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);

Completed in 155 milliseconds