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

  /external/webkit/WebCore/platform/graphics/wince/
PathWince.cpp 103 m_path->addEllipse(p, r, r, sar, ear, anticlockwise);
111 void Path::addEllipse(const FloatRect& r)
113 m_path->addEllipse(r);
PlatformPathWince.h 159 void addEllipse(const FloatPoint& p, float a, float b, float sar, float ear, bool anticlockwise);
161 void addEllipse(const FloatRect& r);
PlatformPathWince.cpp 718 void PlatformPath::addEllipse(const FloatPoint& p, float a, float b, float sar, float ear, bool anticlockwise)
752 void PlatformPath::addEllipse(const FloatRect& r)
755 addEllipse(r.location() + radius, radius.width(), radius.height(), 0, 0, true);
  /external/webkit/WebCore/platform/graphics/haiku/
PathHaiku.cpp 124 void Path::addEllipse(const FloatRect& r)
  /external/webkit/WebCore/platform/graphics/
Path.h 132 void addEllipse(const FloatRect&);
  /external/webkit/WebCore/platform/graphics/wx/
PathWx.cpp 197 void Path::addEllipse(const FloatRect& rect)
201 m_path->AddEllipse(rect.x(), rect.y(), rect.width(), rect.height());
  /external/webkit/WebCore/platform/graphics/qt/
PathQt.cpp 283 void Path::addEllipse(const FloatRect& r)
285 m_path.addEllipse(r.x(), r.y(), r.width(), r.height());
GraphicsContextQt.cpp 1044 newClip.addEllipse(QRect(rect));
1051 newClip.addEllipse(clipOutRect);
1071 path.addEllipse(QRectF(rect.x(), rect.y(), rect.width(), rect.height()));
1074 path.addEllipse(QRectF(rect.x() + thickness, rect.y() + thickness,
    [all...]
  /external/webkit/WebCore/html/
HTMLAreaElement.cpp 144 path.addEllipse(FloatRect(m_coords[0].calcMinValue(width) - r, m_coords[1].calcMinValue(height) - r, 2 * r, 2 * r));
  /external/webkit/WebCore/platform/graphics/skia/
PathSkia.cpp 163 void Path::addEllipse(const FloatRect& rect)
  /external/webkit/WebCore/platform/graphics/android/
PathAndroid.cpp 210 void Path::addEllipse(const FloatRect& rect)
  /external/webkit/WebCore/platform/graphics/cg/
PathCG.cpp 232 void Path::addEllipse(const FloatRect& r)
  /external/webkit/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 815 p.addEllipse(r);
818 p.addEllipse(r);
    [all...]
PathCairo.cpp 229 void Path::addEllipse(const FloatRect& rect)

Completed in 620 milliseconds