Home
last modified time | relevance | path

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

/external/webkit/WebCore/platform/graphics/haiku/
DGraphicsContextHaiku.cpp127 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/
DGraphicsContextOpenVG.cpp123 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()
DPainterOpenVG.h91 …void drawArc(const IntRect& ellipseBounds, int startAngle, int angleSpan, VGbitfield paintModes = …
DPainterOpenVG.cpp810 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/
DGraphicsContextAndroid.cpp585 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/
DGraphicsContextSkia.cpp1089 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/
DGraphicsContextWx.cpp230 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/
DGraphicsContextQt.cpp444 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/
DRenderObject.cpp912 … 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()
DRenderObject.h408 … int angleSpan, BoxSide, Color, const Color& textcolor, EBorderStyle, bool firstCorner);
/external/webkit/WebCore/platform/graphics/
DGraphicsContext.h244 void strokeArc(const IntRect&, int startAngle, int angleSpan);
/external/webkit/WebCore/platform/graphics/cg/
DGraphicsContextCG.cpp355 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/
DGraphicsContextCairo.cpp380 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/
DGraphicsContextWince.cpp801 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()