• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/

Lines Matching refs:to

7 If you want to write data to text files (or streams) use 
39 \docparam{conv}{Charset conversion object object used to encoding Unicode
40 strings before writing them to the stream
44 recommended to use default value (UTF-8).}
65 Writes the single byte {\it i8} to the stream.
69 Writes an array of bytes to the stream. The amount of bytes to write is
76 Writes the 16 bit unsigned integer {\it i16} to the stream.
80 Writes an array of 16 bit unsigned integer to the stream. The amount of
81 16 bit unsigned integer to write is specified with the {\it size} variable.
87 Writes the 32 bit unsigned integer {\it i32} to the stream.
91 Writes an array of 32 bit unsigned integer to the stream. The amount of
92 32 bit unsigned integer to write is specified with the {\it size} variable.
98 Writes the 64 bit unsigned integer {\it i64} to the stream.
102 Writes an array of 64 bit unsigned integer to the stream. The amount of
103 64 bit unsigned integer to write is specified with the {\it size} variable.
109 Writes the double {\it f} to the stream using the IEEE format.
113 Writes an array of double to the stream. The amount of double to write is
120 Writes {\it string} to the stream. Actually, this method writes the size of
123 In ANSI build of wxWidgets, the string is written to the stream in exactly
125 is first converted to multibyte representation with {\it conv} object passed
126 to stream's constructor (consequently, ANSI application can read data
128 representation is written to the stream. UTF-8 is used by default.