Lines Matching defs:writer
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)
667 { return writer.writeChar(val); }
669 Writer& operator<< (Writer &writer, Glib::ustring &val)
670 { return writer.writeUString(val); }
672 Writer& operator<< (Writer &writer, std::string &val)
673 { return writer.writeStdString(val); }
675 Writer& operator<< (Writer &writer, char const *val)
676 { return writer.writeString(val); }
678 Writer& operator<< (Writer &writer, bool val)
679 { return writer.writeBool(val); }
681 Writer& operator<< (Writer &writer, short val)
682 { return writer.writeShort(val); }
684 Writer& operator<< (Writer &writer, unsigned short val)
685 { return writer.writeUnsignedShort(val); }
687 Writer& operator<< (Writer &writer, int val)
688 { return writer.writeInt(val); }
690 Writer& operator<< (Writer &writer, unsigned int val)
691 { return writer.writeUnsignedInt(val); }
693 Writer& operator<< (Writer &writer, long val)
694 { return writer.writeLong(val); }
696 Writer& operator<< (Writer &writer, unsigned long val)
697 { return writer.writeUnsignedLong(val); }
699 Writer& operator<< (Writer &writer, float val)
700 { return writer.writeFloat(val); }
702 Writer& operator<< (Writer &writer, double val)
703 { return writer.writeDouble(val); }