• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/

Lines Matching refs:term_ostream_t

66 /* term_ostream_t is defined as a pointer to struct term_ostream_representation.
70 struct term_ostream_t
75 term_ostream_t () : _pointer (NULL) {}
76 term_ostream_t (struct term_ostream_representation *pointer) : _pointer (pointer) {}
84 explicit term_ostream_t (ostream_t x) : _pointer ((struct term_ostream_representation *) (void *) x) {}
87 typedef ostream_t term_ostream_t;
91 extern void term_ostream_write_mem (term_ostream_t first_arg, const void *data, size_t len);
92 extern void term_ostream_flush (term_ostream_t first_arg);
93 extern void term_ostream_free (term_ostream_t first_arg);
94 extern term_color_t term_ostream_rgb_to_color (term_ostream_t first_arg, int red, int green, int blue);
95 extern term_color_t term_ostream_get_color (term_ostream_t first_arg);
96 extern void term_ostream_set_color (term_ostream_t first_arg, term_color_t color);
97 extern term_color_t term_ostream_get_bgcolor (term_ostream_t first_arg);
98 extern void term_ostream_set_bgcolor (term_ostream_t first_arg, term_color_t color);
99 extern term_weight_t term_ostream_get_weight (term_ostream_t first_arg);
100 extern void term_ostream_set_weight (term_ostream_t first_arg, term_weight_t weight);
101 extern term_posture_t term_ostream_get_posture (term_ostream_t first_arg);
102 extern void term_ostream_set_posture (term_ostream_t first_arg, term_posture_t posture);
103 extern term_underline_t term_ostream_get_underline (term_ostream_t first_arg);
104 extern void term_ostream_set_underline (term_ostream_t first_arg, term_underline_t underline);
106 /* Type representing an implementation of term_ostream_t. */
112 #define THIS_ARG term_ostream_t first_arg
117 /* Public portion of the object pointed to by a term_ostream_t. */
131 term_ostream_write_mem (term_ostream_t first_arg, const void *data, size_t len)
140 term_ostream_flush (term_ostream_t first_arg)
149 term_ostream_free (term_ostream_t first_arg)
158 term_ostream_rgb_to_color (term_ostream_t first_arg, int red, int green, int blue)
167 term_ostream_get_color (term_ostream_t first_arg)
176 term_ostream_set_color (term_ostream_t first_arg, term_color_t color)
185 term_ostream_get_bgcolor (term_ostream_t first_arg)
194 term_ostream_set_bgcolor (term_ostream_t first_arg, term_color_t color)
203 term_ostream_get_weight (term_ostream_t first_arg)
212 term_ostream_set_weight (term_ostream_t first_arg, term_weight_t weight)
221 term_ostream_get_posture (term_ostream_t first_arg)
230 term_ostream_set_posture (term_ostream_t first_arg, term_posture_t posture)
239 term_ostream_get_underline (term_ostream_t first_arg)
248 term_ostream_set_underline (term_ostream_t first_arg, term_underline_t underline)
275 extern term_ostream_t term_ostream_create (int fd, const char *filename);