Home | History | Annotate | Download | only in svg

Lines Matching full:path

30 #include "Path.h"
51 /* We use this generic _parseNumber function to allow the Path parsing code to work
196 * Parser for svg path data, contained in the d attribute.
203 * svg path data commands and parameters. In the second mode, it will convert all
240 if (command != 'm' && command != 'M') // path must start with moveto
336 // reset curx, cury for next path
674 bool build(Path* path, const String& d)
676 Path temporaryPath;
680 temporaryPath.swap(*path);
716 Path* m_path;
720 bool pathFromSVGData(Path& path, const String& d)
723 return builder.build(&path, d);
825 bool pathSegListFromSVGData(SVGPathSegList* path, const String& d, bool process)
828 return builder.build(path, d, process);