Lines Matching defs:sink
43 #include <2geom/path-sink.h>
64 SVGPathParser(PathSink &sink);
70 * to the path sink is not affected - you need to clear it yourself. */
74 * The path sink is flushed and the internal state is reset after this call.
96 * to finalize parsing, flush the path sink and reset internal state.
143 /** @brief Feed SVG path data to the specified sink
145 void parse_svg_path(char const *str, PathSink &sink);
146 /** @brief Feed SVG path data to the specified sink
148 inline void parse_svg_path(std::string const &str, PathSink &sink) {
149 parse_svg_path(str.c_str(), sink);
151 /** Feed SVG path data from a C stream to the specified sink
153 void parse_svg_path_file(FILE *fi, PathSink &sink);