• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/

Lines Matching refs:stream

1 /* Output stream for CSS styled text, producing HTML output.
46 /* The destination stream. */
48 /* A HTML aware wrapper around the destination stream. */
55 html_styled_ostream::write_mem (html_styled_ostream_t stream,
58 html_ostream_write_mem (stream->html_destination, data, len);
62 html_styled_ostream::flush (html_styled_ostream_t stream)
64 html_ostream_flush (stream->html_destination);
68 html_styled_ostream::free (html_styled_ostream_t stream)
70 html_ostream_free (stream->html_destination);
71 ostream_write_str (stream->destination, "</body>\n");
72 ostream_write_str (stream->destination, "</html>\n");
78 html_styled_ostream::begin_use_class (html_styled_ostream_t stream,
81 html_ostream_begin_span (stream->html_destination, classname);
85 html_styled_ostream::end_use_class (html_styled_ostream_t stream,
88 html_ostream_end_span (stream->html_destination, classname);
96 html_styled_ostream_t stream =
99 stream->base.base.vtable = &html_styled_ostream_vtable;
100 stream->destination = destination;
101 stream->html_destination = html_ostream_create (destination);
103 ostream_write_str (stream->destination, "<?xml version=\"1.0\"?>\n");
114 ostream_write_str (stream->destination,
116 ostream_write_str (stream->destination, "<html>\n");
117 ostream_write_str (stream->destination, "<head>\n");
120 ostream_write_str (stream->destination, "<style type=\"text/css\">\n"
143 ostream_write_mem (stream->destination, buf, n_read);
151 ostream_write_str (stream->destination, "-->\n"
154 ostream_write_str (stream->destination, "</head>\n");
155 ostream_write_str (stream->destination, "<body>\n");
157 return stream;