Searched defs:writer (Results 1 - 4 of 4) sorted by relevance
/inkscape/src/io/ |
H A D | streamtest.cpp | 45 Inkscape::IO::OutputStreamWriter writer(outs); 47 writer << "Hello, world! " << 123.45 << " times\n"; 49 writer.printf("There are %f quick brown foxes in %d states\n", 123.45, 88); 57 Inkscape::IO::StdWriter writer; local 59 writer << "Hello, world! " << 123.45 << " times\n"; 61 writer.printf("There are %f quick brown foxes in %d states\n", 123.45, 88);
|
H A D | inkscapestream.cpp | 445 * Closes this writer and releases any system resources 446 * associated with this writer. 465 * Writes the specified byte to this output writer. 489 * Writes the specified character to this output writer. 500 * Writes the specified unicode string to this output writer. 510 * Writes the specified standard string to this output writer. 520 * Writes the specified character string to this output writer. 666 Writer& operator<< (Writer &writer, char val) argument 667 { return writer.writeChar(val); } 669 Writer& operator<< (Writer &writer, Gli argument 672 operator <<(Writer &writer, std::string &val) argument 675 operator <<(Writer &writer, char const *val) argument 678 operator <<(Writer &writer, bool val) argument 681 operator <<(Writer &writer, short val) argument 684 operator <<(Writer &writer, unsigned short val) argument 687 operator <<(Writer &writer, int val) argument 690 operator <<(Writer &writer, unsigned int val) argument 693 operator <<(Writer &writer, long val) argument 696 operator <<(Writer &writer, unsigned long val) argument 699 operator <<(Writer &writer, float val) argument 702 operator <<(Writer &writer, double val) argument [all...] |
/inkscape/src/extension/internal/filter/ |
H A D | filter-file.cpp | 164 mywriter writer; local 165 sp_repr_write_stream(node, writer, 0, FALSE, g_quark_from_static_string("svg"), 0, 0); 167 Inkscape::Extension::build_from_mem(xml_str, new Filter(g_strdup(writer.c_str())));
|
/inkscape/src/2geom/ |
H A D | svg-path-writer.cpp | 36 #include <2geom/svg-path-writer.h> 276 SVGPathWriter writer; local 277 writer.setPrecision(prec); 278 writer.setOptimize(optimize); 279 writer.setUseShorthands(shorthands); 281 writer.feed(pv); 282 return writer.str();
|
Completed in 20 milliseconds