Searched refs:endAngle (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/platform/graphics/cairo/
H A DPathCairo.cpp173 void Path::addArc(const FloatPoint& p, float r, float startAngle, float endAngle, bool anticlockwise) argument
177 if (!std::isfinite(r) || !std::isfinite(startAngle) || !std::isfinite(endAngle))
181 float sweep = endAngle - startAngle;
184 && ((anticlockwise && (endAngle < startAngle)) || (!anticlockwise && (startAngle < endAngle)))) {
190 cairo_arc(cr, p.x(), p.y(), r, endAngle, endAngle);
193 cairo_arc_negative(cr, p.x(), p.y(), r, startAngle, endAngle);
195 cairo_arc(cr, p.x(), p.y(), r, startAngle, endAngle);
/macosx-10.10/WebCore-7600.1.25/html/canvas/
H A DDOMPath.idl69 [Default=Undefined] optional float endAngle,
H A DCanvasRenderingContext2D.idl80 unrestricted float endAngle, [Default=Undefined] optional boolean anticlockwise);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DPath.h123 void addArc(const FloatPoint&, float radius, float startAngle, float endAngle, bool anticlockwise);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/wince/
H A DPlatformPathWinCE.cpp217 double endAngle = data.m_end - data.m_center; local
220 if (endAngle <= curAngle || startPoint == data.m_end)
221 endAngle += 2 * piDouble;
224 if (endAngle >= curAngle || startPoint == data.m_end)
225 endAngle -= 2 * piDouble;
228 for (curAngle += angleStep; data.m_clockwise ? curAngle < endAngle : curAngle > endAngle; curAngle += angleStep)
/macosx-10.10/vim-55/runtime/autoload/
H A Dphpcomplete.vim5114 \ 'SWFShape::drawArc(': 'float r, float startAngle, float endAngle | void',

Completed in 204 milliseconds