/external/webkit/Source/WebCore/platform/graphics/android/context/ |
D | PlatformGraphicsContextSkia.cpp | 568 int angleSpan) in strokeArc() argument 583 angleSpan = fastMod(angleSpan, 360); in strokeArc() 585 path.addArc(oval, SkIntToScalar(-startAngle), SkIntToScalar(-angleSpan)); in strokeArc()
|
D | GraphicsContextAndroid.cpp | 204 void GraphicsContext::strokeArc(const IntRect& r, int startAngle, int angleSpan) in strokeArc() argument 210 platformContext()->strokeArc(r, startAngle, angleSpan); in strokeArc()
|
D | PlatformGraphicsContextSkia.h | 99 virtual void strokeArc(const IntRect& r, int startAngle, int angleSpan);
|
D | GraphicsOperation.h | 518 StrokeArc(const IntRect& r, int startAngle, int angleSpan) 521 , m_angleSpan(angleSpan)
|
D | PlatformGraphicsContextRecording.h | 140 virtual void strokeArc(const IntRect& r, int startAngle, int angleSpan);
|
D | PlatformGraphicsContext.h | 140 virtual void strokeArc(const IntRect& r, int startAngle, int angleSpan) = 0;
|
D | PlatformGraphicsContextRecording.cpp | 898 int angleSpan) in strokeArc() argument 900 appendDrawingOperation(NEW_OP(StrokeArc)(r, startAngle, angleSpan), r); in strokeArc()
|
/external/webkit/Source/WebCore/platform/graphics/haiku/ |
D | GraphicsContextHaiku.cpp | 124 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/ |
D | GraphicsContextOpenVG.cpp | 121 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()
|
D | PainterOpenVG.h | 103 …void drawArc(const IntRect& ellipseBounds, int startAngle, int angleSpan, VGbitfield paintModes = …
|
D | PainterOpenVG.cpp | 955 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/ |
D | GraphicsContextSkia.cpp | 1168 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/ |
D | GraphicsContextWx.cpp | 228 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/ |
D | RenderObject.cpp | 927 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()
|
D | RenderObject.h | 443 int angleSpan, BoxSide, Color, EBorderStyle, bool firstCorner);
|
/external/webkit/Source/WebCore/platform/graphics/cairo/ |
D | GraphicsContextCairo.cpp | 399 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/ |
D | GraphicsContext.h | 326 void strokeArc(const IntRect&, int startAngle, int angleSpan);
|
/external/webkit/Source/WebCore/platform/graphics/cg/ |
D | GraphicsContextCG.cpp | 314 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/ |
D | GraphicsContextWinCE.cpp | 782 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()
|