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

  /external/webkit/WebCore/platform/graphics/haiku/
PathHaiku.cpp 124 void Path::addEllipse(const FloatRect& r)
  /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.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/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/android/
PathAndroid.cpp 210 void Path::addEllipse(const FloatRect& rect)
  /external/webkit/WebCore/platform/graphics/cairo/
PathCairo.cpp 229 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/qt/
PathQt.cpp 283 void Path::addEllipse(const FloatRect& r)
285 m_path.addEllipse(r.x(), r.y(), r.width(), r.height());
  /external/webkit/WebCore/platform/graphics/skia/
PathSkia.cpp 163 void Path::addEllipse(const FloatRect& rect)

Completed in 149 milliseconds