Home
last modified time | relevance | path

Searched refs:angleSpan (Results 1 – 19 of 19) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/android/context/
DPlatformGraphicsContextSkia.cpp568 int angleSpan) in strokeArc() argument
583 angleSpan = fastMod(angleSpan, 360); in strokeArc()
585 path.addArc(oval, SkIntToScalar(-startAngle), SkIntToScalar(-angleSpan)); in strokeArc()
DGraphicsContextAndroid.cpp204 void GraphicsContext::strokeArc(const IntRect& r, int startAngle, int angleSpan) in strokeArc() argument
210 platformContext()->strokeArc(r, startAngle, angleSpan); in strokeArc()
DPlatformGraphicsContextSkia.h99 virtual void strokeArc(const IntRect& r, int startAngle, int angleSpan);
DGraphicsOperation.h518 StrokeArc(const IntRect& r, int startAngle, int angleSpan)
521 , m_angleSpan(angleSpan)
DPlatformGraphicsContextRecording.h140 virtual void strokeArc(const IntRect& r, int startAngle, int angleSpan);
DPlatformGraphicsContext.h140 virtual void strokeArc(const IntRect& r, int startAngle, int angleSpan) = 0;
DPlatformGraphicsContextRecording.cpp898 int angleSpan) in strokeArc() argument
900 appendDrawingOperation(NEW_OP(StrokeArc)(r, startAngle, angleSpan), r); in strokeArc()
/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/openvg/
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 …t.y() + rect.height() / 2.0, rect.width(), rect.height(), -startAngle, -angleSpan, VGU_ARC_OPEN) =… in drawArc()
/external/webkit/Source/WebCore/platform/graphics/skia/
DGraphicsContextSkia.cpp1168 void GraphicsContext::strokeArc(const IntRect& r, int startAngle, int angleSpan) in strokeArc() argument
1188 angleSpan = fastMod(angleSpan, 360); in strokeArc()
1191 path.addArc(oval, SkIntToScalar(-startAngle), SkIntToScalar(-angleSpan)); in strokeArc()
/external/webkit/Source/WebCore/platform/graphics/wx/
DGraphicsContextWx.cpp228 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan) in strokeArc() argument
234 …->context->DrawEllipticArc(rect.x(), rect.y(), rect.width(), rect.height(), startAngle, angleSpan); in strokeArc()
/external/webkit/Source/WebCore/rendering/
DRenderObject.cpp927 int angleStart, int angleSpan, BoxSide s, Color color, in drawArcForBoxSide() argument
944 …sContext->strokeArc(IntRect(x, y, radius.width() * 2, radius.height() * 2), angleStart, angleSpan); in drawArcForBoxSide()
965 …hicsContext->strokeArc(IntRect(x, outerY, radius.width() * 2, outerHeight), angleStart, angleSpan); in drawArcForBoxSide()
967 …raphicsContext->strokeArc(IntRect(innerX, innerY, innerWidth, innerHeight), angleStart, angleSpan); in drawArcForBoxSide()
984 …sContext->strokeArc(IntRect(x, y, radius.width() * 2, radius.height() * 2), angleStart, angleSpan); in drawArcForBoxSide()
991 … (radius.height() - shiftForInner) * 2), angleStart, angleSpan); in drawArcForBoxSide()
1004 …sContext->strokeArc(IntRect(x, y, radius.width() * 2, radius.height() * 2), angleStart, angleSpan); in drawArcForBoxSide()
DRenderObject.h443 int angleSpan, BoxSide, Color, EBorderStyle, bool firstCorner);
/external/webkit/Source/WebCore/platform/graphics/cairo/
DGraphicsContextCairo.cpp399 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan) in strokeArc() argument
414 float falen = fa + angleSpan; in strokeArc()
/external/webkit/Source/WebCore/platform/graphics/
DGraphicsContext.h326 void strokeArc(const IntRect&, int startAngle, int angleSpan);
/external/webkit/Source/WebCore/platform/graphics/cg/
DGraphicsContextCG.cpp314 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan) in strokeArc() argument
337 float falen = fa + angleSpan; in strokeArc()
/external/webkit/Source/WebCore/platform/graphics/wince/
DGraphicsContextWinCE.cpp782 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan) in strokeArc() argument
808 getEllipsePointByAngle(deg2rad((double)startAngle + angleSpan), a, b, fendX, fendY); in strokeArc()