Home
last modified time | relevance | path

Searched refs:startAngle (Results 1 – 25 of 27) sorted by relevance

12

/external/webkit/Source/WebCore/platform/graphics/cairo/
DPathCairo.cpp147 void Path::addArc(const FloatPoint& p, float r, float startAngle, float endAngle, bool anticlockwis… in addArc() argument
151 if (!isfinite(r) || !isfinite(startAngle) || !isfinite(endAngle)) in addArc()
155 float sweep = endAngle - startAngle; in addArc()
158 … && ((anticlockwise && (endAngle < startAngle)) || (!anticlockwise && (startAngle < endAngle)))) { in addArc()
160 cairo_arc_negative(cr, p.x(), p.y(), r, startAngle, startAngle - twoPI); in addArc()
162 cairo_arc(cr, p.x(), p.y(), r, startAngle, startAngle + twoPI); in addArc()
167 cairo_arc_negative(cr, p.x(), p.y(), r, startAngle, endAngle); in addArc()
169 cairo_arc(cr, p.x(), p.y(), r, startAngle, endAngle); in addArc()
DGraphicsContextCairo.cpp399 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan) in strokeArc() argument
413 float fa = startAngle; in strokeArc()
/external/webkit/Source/WebCore/platform/graphics/openvg/
DPathOpenVG.cpp305 void Path::addArc(const FloatPoint& center, float radius, float startAngle, float endAngle, bool an… in addArc() argument
310 if (!isfinite(radius) || !isfinite(startAngle) || !isfinite(endAngle)) in addArc()
316 startAngle = fmod((2.0 * piDouble) - startAngle, 2.0 * piDouble); in addArc()
321 if (endAngle <= startAngle) in addArc()
325 ? (endAngle - startAngle) in addArc()
326 : (startAngle - endAngle + (2.0 * piDouble)); in addArc()
341 const VGfloat startX = radius * cos(startAngle) + center.x(); in addArc()
342 const VGfloat startY = -radius * sin(startAngle) + center.y(); in addArc()
DGraphicsContextOpenVG.cpp121 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan) in strokeArc() argument
126 m_data->drawArc(rect, startAngle, angleSpan, VG_STROKE_PATH); in strokeArc()
DPainterOpenVG.h103 …void drawArc(const IntRect& ellipseBounds, int startAngle, int angleSpan, VGbitfield paintModes = …
DPainterOpenVG.cpp955 void PainterOpenVG::drawArc(const IntRect& rect, int startAngle, int angleSpan, VGbitfield specifie… in drawArc() argument
980 …) / 2.0, rect.y() + rect.height() / 2.0, rect.width(), rect.height(), -startAngle, -angleSpan, VGU… in drawArc()
/external/webkit/Source/WebCore/platform/graphics/wx/
DPathWx.cpp188 void Path::addArc(const FloatPoint& point, float radius, float startAngle, float endAngle, bool clo… in addArc() argument
192 m_path->AddArc(point.x(), point.y(), radius, startAngle, endAngle, clockwise); in addArc()
DGraphicsContextWx.cpp228 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan) in strokeArc() argument
234 …m_data->context->DrawEllipticArc(rect.x(), rect.y(), rect.width(), rect.height(), startAngle, angl… in strokeArc()
/external/skia/src/core/
DSkPath.cpp498 SkScalar rx, SkScalar ry, int startAngle, in add_corner_arc() argument
506 switch (startAngle) { in add_corner_arc()
518 SkScalar start = SkIntToScalar(startAngle); in add_corner_arc()
627 static int build_arc_points(const SkRect& oval, SkScalar startAngle, in build_arc_points() argument
632 start.fY = SkScalarSinCos(SkDegreesToRadians(startAngle), &start.fX); in build_arc_points()
633 stop.fY = SkScalarSinCos(SkDegreesToRadians(startAngle + sweepAngle), in build_arc_points()
647 SkScalar stopRad = SkDegreesToRadians(startAngle + sweepAngle); in build_arc_points()
668 void SkPath::arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, in arcTo() argument
675 int count = build_arc_points(oval, startAngle, sweepAngle, pts); in arcTo()
688 void SkPath::addArc(const SkRect& oval, SkScalar startAngle, in addArc() argument
[all …]
DSkCanvas.cpp1590 void SkCanvas::drawArc(const SkRect& oval, SkScalar startAngle, in drawArc() argument
1600 path.arcTo(oval, startAngle, sweepAngle, !useCenter); in drawArc()
/external/proguard/src/proguard/gui/splash/
DOverrideGraphics2D.java274 public void drawArc(int x, int y, int width, int height, int startAngle, int arcAngle) in drawArc() argument
276 graphics.drawArc(x, y, width, height, startAngle, arcAngle); in drawArc()
414 public void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle) in fillArc() argument
416 graphics.fillArc(x, y, width, height, startAngle, arcAngle); in fillArc()
/external/webkit/Source/WebCore/platform/graphics/skia/
DGraphicsContextSkia.cpp190 void addCornerArc(SkPath* path, const SkRect& rect, const IntSize& size, int startAngle) in addCornerArc() argument
197 switch (startAngle) { in addCornerArc()
216 path->arcTo(r, SkIntToScalar(startAngle), SkIntToScalar(90), false); in addCornerArc()
1168 void GraphicsContext::strokeArc(const IntRect& r, int startAngle, int angleSpan) in strokeArc() argument
1187 startAngle = fastMod(startAngle, 360); in strokeArc()
1191 path.addArc(oval, SkIntToScalar(-startAngle), SkIntToScalar(-angleSpan)); in strokeArc()
/external/skia/include/core/
DSkPath.h406 void arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle,
481 void addArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle);
DSkCanvas.h520 void drawArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle,
/external/webkit/Source/WebCore/platform/graphics/haiku/
DGraphicsContextHaiku.cpp124 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan) in strokeArc() argument
129 m_data->m_view->StrokeArc(rect, startAngle, angleSpan, getHaikuStrokeStyle()); in strokeArc()
/external/webkit/Source/WebCore/platform/graphics/
DPath.h136 …void addArc(const FloatPoint&, float radius, float startAngle, float endAngle, bool anticlockwise);
DGraphicsContext.h332 void strokeArc(const IntRect&, int startAngle, int angleSpan);
/external/webkit/Source/WebCore/platform/graphics/android/
DGraphicsContextAndroid.cpp699 void GraphicsContext::strokeArc(const IntRect& r, int startAngle, int angleSpan) in strokeArc() argument
716 startAngle = fastMod(startAngle, 360); in strokeArc()
719 path.addArc(oval, SkIntToScalar(-startAngle), SkIntToScalar(-angleSpan)); in strokeArc()
/external/chromium/chrome/browser/ui/cocoa/
Dprofile_menu_button.mm178 startAngle:180
187 startAngle:270
Dhover_close_button.mm94 startAngle:0.0
Ddock_icon.mm112 startAngle:90.0
/external/quake/quake/src/QW/scitech/include/
Dmgraph.h1314 void MGLAPI MGL_ellipseArc(rect_t extentRect,m_int startAngle,m_int endAngle);
1315 void MGLAPI MGL_ellipseArcCoord(m_int x,m_int y,m_int xradius,m_int yradius,m_int startAngle,m_int …
1319 void MGLAPI MGL_fillEllipseArc(rect_t extentRect,m_int startAngle,m_int endAngle);
1320 void MGLAPI MGL_fillEllipseArcCoord(m_int x,m_int y,m_int xradius,m_int yradius,m_int startAngle,m_…
1324 void MGLAPI MGL_ellipseArcEngine(rect_t extentRect,m_int startAngle,m_int endAngle,arc_coords_t *a…
1415 region_t * MGLAPI MGL_rgnEllipseArc(rect_t extentRect,m_int startAngle,m_int endAngle,const region_…
1418 region_t * MGLAPI MGL_rgnSolidEllipseArc(rect_t extentRect,m_int startAngle,m_int endAngle);
/external/quake/quake/src/WinQuake/scitech/INCLUDE/
DMGRAPH.H1314 void MGLAPI MGL_ellipseArc(rect_t extentRect,m_int startAngle,m_int endAngle);
1315 void MGLAPI MGL_ellipseArcCoord(m_int x,m_int y,m_int xradius,m_int yradius,m_int startAngle,m_int …
1319 void MGLAPI MGL_fillEllipseArc(rect_t extentRect,m_int startAngle,m_int endAngle);
1320 void MGLAPI MGL_fillEllipseArcCoord(m_int x,m_int y,m_int xradius,m_int yradius,m_int startAngle,m_…
1324 void MGLAPI MGL_ellipseArcEngine(rect_t extentRect,m_int startAngle,m_int endAngle,arc_coords_t *a…
1415 region_t * MGLAPI MGL_rgnEllipseArc(rect_t extentRect,m_int startAngle,m_int endAngle,const region_…
1418 region_t * MGLAPI MGL_rgnSolidEllipseArc(rect_t extentRect,m_int startAngle,m_int endAngle);
/external/webkit/Source/WebCore/html/canvas/
DCanvasRenderingContext2D.idl74 …void arc(in float x, in float y, in float radius, in float startAngle, in float endAngle, in boole…
/external/webkit/Source/WebCore/platform/graphics/cg/
DGraphicsContextCG.cpp314 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan) in strokeArc() argument
336 float fa = startAngle; in strokeArc()

12