/external/webkit/WebCore/platform/graphics/haiku/ |
D | GraphicsContextHaiku.cpp | 127 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan) in strokeArc() argument 132 m_data->m_view->StrokeArc(rect, startAngle, angleSpan, getHaikuStrokeStyle()); in strokeArc()
|
/external/webkit/WebCore/platform/graphics/openvg/ |
D | GraphicsContextOpenVG.cpp | 123 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan) in strokeArc() argument 128 m_data->drawArc(rect, startAngle, angleSpan, VG_STROKE_PATH); in strokeArc()
|
D | PainterOpenVG.h | 91 …void drawArc(const IntRect& ellipseBounds, int startAngle, int angleSpan, VGbitfield paintModes = …
|
D | PainterOpenVG.cpp | 810 void PainterOpenVG::drawArc(const IntRect& rect, int startAngle, int angleSpan, VGbitfield specifie… in drawArc() argument 835 …t.y() + rect.height() / 2.0, rect.width(), rect.height(), -startAngle, -angleSpan, VGU_ARC_OPEN) =… in drawArc()
|
/external/webkit/WebCore/platform/graphics/android/ |
D | GraphicsContextAndroid.cpp | 585 void GraphicsContext::strokeArc(const IntRect& r, int startAngle, int angleSpan) in strokeArc() argument 605 angleSpan = fast_mod(angleSpan, 360); in strokeArc() 607 path.addArc(oval, SkIntToScalar(-startAngle), SkIntToScalar(-angleSpan)); in strokeArc()
|
/external/webkit/WebCore/platform/graphics/skia/ |
D | GraphicsContextSkia.cpp | 1089 void GraphicsContext::strokeArc(const IntRect& r, int startAngle, int angleSpan) in strokeArc() argument 1107 angleSpan = fastMod(angleSpan, 360); in strokeArc() 1110 path.addArc(oval, SkIntToScalar(-startAngle), SkIntToScalar(-angleSpan)); in strokeArc()
|
/external/webkit/WebCore/platform/graphics/wx/ |
D | GraphicsContextWx.cpp | 230 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan) in strokeArc() argument 236 …->context->DrawEllipticArc(rect.x(), rect.y(), rect.width(), rect.height(), startAngle, angleSpan); in strokeArc()
|
/external/webkit/WebCore/platform/graphics/qt/ |
D | GraphicsContextQt.cpp | 444 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan) in strokeArc() argument 457 angleSpan *= 16; in strokeArc() 464 p->drawArc(rect, startAngle, angleSpan); in strokeArc() 467 p->drawArc(rect, startAngle, angleSpan); in strokeArc()
|
/external/webkit/WebCore/rendering/ |
D | RenderObject.cpp | 912 … int angleStart, int angleSpan, BoxSide s, Color c, const Color& textColor, in drawArcForBoxSide() argument 934 …sContext->strokeArc(IntRect(x, y, radius.width() * 2, radius.height() * 2), angleStart, angleSpan); in drawArcForBoxSide() 955 …hicsContext->strokeArc(IntRect(x, outerY, radius.width() * 2, outerHeight), angleStart, angleSpan); in drawArcForBoxSide() 957 …raphicsContext->strokeArc(IntRect(innerX, innerY, innerWidth, innerHeight), angleStart, angleSpan); in drawArcForBoxSide() 974 …sContext->strokeArc(IntRect(x, y, radius.width() * 2, radius.height() * 2), angleStart, angleSpan); in drawArcForBoxSide() 981 … (radius.height() - shiftForInner) * 2), angleStart, angleSpan); in drawArcForBoxSide() 994 …sContext->strokeArc(IntRect(x, y, radius.width() * 2, radius.height() * 2), angleStart, angleSpan); in drawArcForBoxSide()
|
D | RenderObject.h | 408 … int angleSpan, BoxSide, Color, const Color& textcolor, EBorderStyle, bool firstCorner);
|
/external/webkit/WebCore/platform/graphics/ |
D | GraphicsContext.h | 244 void strokeArc(const IntRect&, int startAngle, int angleSpan);
|
/external/webkit/WebCore/platform/graphics/cg/ |
D | GraphicsContextCG.cpp | 355 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan) in strokeArc() argument 378 float falen = fa + angleSpan; in strokeArc()
|
/external/webkit/WebCore/platform/graphics/cairo/ |
D | GraphicsContextCairo.cpp | 380 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan) in strokeArc() argument 395 float falen = fa + angleSpan; in strokeArc()
|
/external/webkit/WebCore/platform/graphics/wince/ |
D | GraphicsContextWince.cpp | 801 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan) in strokeArc() argument 827 getEllipsePointByAngle(deg2rad((double)startAngle + angleSpan), a, b, fendX, fendY); in strokeArc()
|