Searched defs:anticlockwise (Results 1 - 8 of 8) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DPathHaiku.cpp122 void Path::addArc(const FloatPoint& p, float r, float sar, float ear, bool anticlockwise) argument
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DPathSkia.cpp130 void Path::addArc(const FloatPoint& p, float r, float sa, float ea, bool anticlockwise) { argument
147 m_path->addOval(oval, anticlockwise ?
156 if (anticlockwise && sweepDegrees > 0) {
158 } else if (!anticlockwise && sweepDegrees < 0) {
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DPathWinCE.cpp101 void Path::addArc(const FloatPoint& p, float r, float sar, float ear, bool anticlockwise) argument
103 m_path->addEllipse(p, r, r, sar, ear, anticlockwise);
H A DPlatformPathWinCE.cpp717 void PlatformPath::addEllipse(const FloatPoint& p, float a, float b, float sar, float ear, bool anticlockwise) argument
733 PlatformPathElement::ArcTo data = { { endX, endY }, { p.x(), p.y() }, { a, b }, !anticlockwise };
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DPathCairo.cpp147 void Path::addArc(const FloatPoint& p, float r, float startAngle, float endAngle, bool anticlockwise) argument
158 && ((anticlockwise && (endAngle < startAngle)) || (!anticlockwise && (startAngle < endAngle)))) {
159 if (anticlockwise)
166 if (anticlockwise)
238 // anticlockwise logic
239 bool anticlockwise = false; local
249 anticlockwise = true;
251 anticlockwise = true;
255 addArc(p, radius, sa, ea, anticlockwise);
[all...]
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DPathOpenVG.cpp269 const bool anticlockwise = cross < 0; local
272 const VGubyte segmentCommand = anticlockwise ? VG_SCCWARC_TO_ABS : VG_SCWARC_TO_ABS;
305 void Path::addArc(const FloatPoint& center, float radius, float startAngle, float endAngle, bool anticlockwise) argument
314 // from the positive X axis instead of going standard anticlockwise.
324 const VGfloat angleDelta = anticlockwise
352 // we already get it passed as a parameter (Fs == !anticlockwise).
356 // anticlockwise parameter in order to get the specified rotation.
357 const VGubyte segmentCommand = !anticlockwise
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DPathQt.cpp235 // anticlockwise logic
236 bool anticlockwise = false; local
246 anticlockwise = true;
248 anticlockwise = true;
252 addArc(p, radius, sa, ea, anticlockwise);
260 void Path::addArc(const FloatPoint& p, float r, float sar, float ear, bool anticlockwise) argument
273 anticlockwise = !anticlockwise;
286 if ((!anticlockwise && (ea - sa >= 360)) || (anticlockwise
[all...]
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasRenderingContext2D.cpp838 void CanvasRenderingContext2D::arc(float x, float y, float r, float sa, float ea, bool anticlockwise, ExceptionCode& ec) argument
854 m_path.addArc(FloatPoint(x, y), r, sa, ea, anticlockwise);

Completed in 58 milliseconds