HomeSort by relevance Sort by last modified time
    Searched refs:angleSpan (Results 1 - 14 of 14) sorted by null

  /external/webkit/WebCore/platform/graphics/openvg/
PainterOpenVG.h 91 void drawArc(const IntRect& ellipseBounds, int startAngle, int angleSpan, VGbitfield paintModes = (VG_STROKE_PATH | VG_FILL_PATH));
GraphicsContextOpenVG.cpp 123 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan)
128 m_data->drawArc(rect, startAngle, angleSpan, VG_STROKE_PATH);
PainterOpenVG.cpp 810 void PainterOpenVG::drawArc(const IntRect& rect, int startAngle, int angleSpan, VGbitfield specifiedPaintModes)
835 if (vguArc(path, rect.x() + rect.width() / 2.0, rect.y() + rect.height() / 2.0, rect.width(), rect.height(), -startAngle, -angleSpan, VGU_ARC_OPEN) == VGU_NO_ERROR) {
  /external/webkit/WebCore/platform/graphics/haiku/
GraphicsContextHaiku.cpp 127 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan)
132 m_data->m_view->StrokeArc(rect, startAngle, angleSpan, getHaikuStrokeStyle());
  /external/webkit/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp 585 void GraphicsContext::strokeArc(const IntRect& r, int startAngle, int angleSpan)
605 angleSpan = fast_mod(angleSpan, 360);
607 path.addArc(oval, SkIntToScalar(-startAngle), SkIntToScalar(-angleSpan));
    [all...]
  /external/webkit/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp     [all...]
  /external/webkit/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 230 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan)
236 m_data->context->DrawEllipticArc(rect.x(), rect.y(), rect.width(), rect.height(), startAngle, angleSpan);
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 444 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan)
457 angleSpan *= 16;
464 p->drawArc(rect, startAngle, angleSpan);
467 p->drawArc(rect, startAngle, angleSpan);
    [all...]
  /external/webkit/WebCore/rendering/
RenderObject.cpp 912 int angleStart, int angleSpan, BoxSide s, Color c, const Color& textColor,
    [all...]
RenderObject.h 408 int angleSpan, BoxSide, Color, const Color& textcolor, EBorderStyle, bool firstCorner);
    [all...]
  /external/webkit/WebCore/platform/graphics/
GraphicsContext.h 244 void strokeArc(const IntRect&, int startAngle, int angleSpan);
  /external/webkit/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 355 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan)
378 float falen = fa + angleSpan;
    [all...]
  /external/webkit/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 380 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan)
395 float falen = fa + angleSpan;
    [all...]
  /external/webkit/WebCore/platform/graphics/wince/
GraphicsContextWince.cpp 801 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan)
827 getEllipsePointByAngle(deg2rad((double)startAngle + angleSpan), a, b, fendX, fendY);
    [all...]

Completed in 143 milliseconds