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

  /external/webkit/Source/WebCore/svg/
SVGPathByteStreamSource.cpp 103 bool SVGPathByteStreamSource::parseArcToSegment(float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint)
108 largeArc = readFlag();
SVGPathSegListSource.cpp 138 bool SVGPathSegListSource::parseArcToSegment(float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint)
146 largeArc = arcTo->largeArcFlag();
SVGPathStringSource.cpp 224 bool SVGPathStringSource::parseArcToSegment(float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint)
231 || !parseArcFlag(m_current, m_end, largeArc)
SVGPathParser.cpp 243 bool largeArc;
246 if (!m_source->parseArcToSegment(rx, ry, angle, largeArc, sweep, targetPoint))
270 return decomposeArcToCubic(angle, rx, ry, point1, targetPoint, largeArc, sweep);
272 m_consumer->arcTo(rx, ry, angle, largeArc, sweep, targetPoint, m_mode);
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PathOpenVG.cpp 348 const bool largeArc = (angleDelta > piDouble);
358 ? (largeArc ? VG_LCCWARC_TO_ABS : VG_SCCWARC_TO_ABS)
359 : (largeArc ? VG_LCWARC_TO_ABS : VG_SCWARC_TO_ABS);

Completed in 38 milliseconds