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/
PlatformGraphicsContextRecording.h 114 virtual void strokeArc(const IntRect& r, int startAngle, int angleSpan);
PlatformGraphicsContextSkia.h 98 virtual void strokeArc(const IntRect& r, int startAngle, int angleSpan);
PlatformGraphicsContextSkia.cpp 566 int angleSpan)
581 angleSpan = fastMod(angleSpan, 360);
583 path.addArc(oval, SkIntToScalar(-startAngle), SkIntToScalar(-angleSpan));
GraphicsContextAndroid.cpp 201 void GraphicsContext::strokeArc(const IntRect& r, int startAngle, int angleSpan)
207 platformContext()->strokeArc(r, startAngle, angleSpan);
PlatformGraphicsContextRecording.cpp 357 int angleSpan)
359 mGraphicsOperationCollection->append(new GraphicsOperation::StrokeArc(r, startAngle, angleSpan));
PlatformGraphicsContext.h 137 virtual void strokeArc(const IntRect& r, int startAngle, int angleSpan) = 0;
GraphicsOperation.h 708 StrokeArc(const IntRect& r, int startAngle, int angleSpan)
711 , m_angleSpan(angleSpan)
  /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 483 milliseconds