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

  /external/webkit/WebCore/platform/graphics/cairo/
PathCairo.cpp 139 void Path::addArc(const FloatPoint& p, float r, float sa, float ea, bool anticlockwise)
147 if (anticlockwise)
209 // anticlockwise logic
210 bool anticlockwise = false; local
220 anticlockwise = true;
222 anticlockwise = true;
226 addArc(p, radius, sa, ea, anticlockwise);
  /external/webkit/WebCore/platform/graphics/qt/
PathQt.cpp 208 // anticlockwise logic
209 bool anticlockwise = false; local
219 anticlockwise = true;
221 anticlockwise = true;
225 addArc(p, radius, sa, ea, anticlockwise);
234 void Path::addArc(const FloatPoint& p, float r, float sar, float ear, bool anticlockwise)
247 anticlockwise = !anticlockwise;
260 if (!anticlockwise && (ea < sa))
262 else if (anticlockwise && (sa < ea)
    [all...]

Completed in 26 milliseconds