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

  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextSkia.h 99 virtual void strokeArc(const IntRect& r, int startAngle, int angleSpan);
PlatformGraphicsContextSkia.cpp 568 int angleSpan)
583 angleSpan = fastMod(angleSpan, 360);
585 path.addArc(oval, SkIntToScalar(-startAngle), SkIntToScalar(-angleSpan));
GraphicsContextAndroid.cpp 206 void GraphicsContext::strokeArc(const IntRect& r, int startAngle, int angleSpan)
212 platformContext()->strokeArc(r, startAngle, angleSpan);
GraphicsOperation.h 515 StrokeArc(const IntRect& r, int startAngle, int angleSpan)
518 , m_angleSpan(angleSpan)
PlatformGraphicsContext.h 140 virtual void strokeArc(const IntRect& r, int startAngle, int angleSpan) = 0;
PlatformGraphicsContextRecording.h 137 virtual void strokeArc(const IntRect& r, int startAngle, int angleSpan);
PlatformGraphicsContextRecording.cpp 897 int angleSpan)
899 appendDrawingOperation(NEW_OP(StrokeArc)(r, startAngle, angleSpan), r);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.h 103 void drawArc(const IntRect& ellipseBounds, int startAngle, int angleSpan, VGbitfield paintModes = (VG_STROKE_PATH | VG_FILL_PATH));
GraphicsContextOpenVG.cpp 121 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan)
126 m_data->drawArc(rect, startAngle, angleSpan, VG_STROKE_PATH);
PainterOpenVG.cpp 955 void PainterOpenVG::drawArc(const IntRect& rect, int startAngle, int angleSpan, VGbitfield specifiedPaintModes)
980 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) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/haiku/
GraphicsContextHaiku.cpp 124 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan)
129 m_data->m_view->StrokeArc(rect, startAngle, angleSpan, getHaikuStrokeStyle());
  /external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 228 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan)
234 m_data->context->DrawEllipticArc(rect.x(), rect.y(), rect.width(), rect.height(), startAngle, angleSpan);
  /external/webkit/Source/WebCore/rendering/
RenderObject.cpp     [all...]
RenderObject.h 443 int angleSpan, BoxSide, Color, EBorderStyle, bool firstCorner);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 399 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan)
414 float falen = fa + angleSpan;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.h 326 void strokeArc(const IntRect&, int startAngle, int angleSpan);
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 314 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan)
337 float falen = fa + angleSpan;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp 782 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan)
808 getEllipsePointByAngle(deg2rad((double)startAngle + angleSpan), a, b, fendX, fendY);
    [all...]

Completed in 469 milliseconds