• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/

Lines Matching refs:first_arg

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);
112 #define THIS_ARG term_ostream_t first_arg
131 term_ostream_write_mem (term_ostream_t first_arg, const void *data, size_t len)
134 ((struct term_ostream_representation_header *) (struct term_ostream_representation *) first_arg)->vtable;
135 vtable->write_mem (first_arg,data,len);
140 term_ostream_flush (term_ostream_t first_arg)
143 ((struct term_ostream_representation_header *) (struct term_ostream_representation *) first_arg)->vtable;
144 vtable->flush (first_arg);
149 term_ostream_free (term_ostream_t first_arg)
152 ((struct term_ostream_representation_header *) (struct term_ostream_representation *) first_arg)->vtable;
153 vtable->free (first_arg);
158 term_ostream_rgb_to_color (term_ostream_t first_arg, int red, int green, int blue)
161 ((struct term_ostream_representation_header *) (struct term_ostream_representation *) first_arg)->vtable;
162 return vtable->rgb_to_color (first_arg,red,green,blue);
167 term_ostream_get_color (term_ostream_t first_arg)
170 ((struct term_ostream_representation_header *) (struct term_ostream_representation *) first_arg)->vtable;
171 return vtable->get_color (first_arg);
176 term_ostream_set_color (term_ostream_t first_arg, term_color_t color)
179 ((struct term_ostream_representation_header *) (struct term_ostream_representation *) first_arg)->vtable;
180 vtable->set_color (first_arg,color);
185 term_ostream_get_bgcolor (term_ostream_t first_arg)
188 ((struct term_ostream_representation_header *) (struct term_ostream_representation *) first_arg)->vtable;
189 return vtable->get_bgcolor (first_arg);
194 term_ostream_set_bgcolor (term_ostream_t first_arg, term_color_t color)
197 ((struct term_ostream_representation_header *) (struct term_ostream_representation *) first_arg)->vtable;
198 vtable->set_bgcolor (first_arg,color);
203 term_ostream_get_weight (term_ostream_t first_arg)
206 ((struct term_ostream_representation_header *) (struct term_ostream_representation *) first_arg)->vtable;
207 return vtable->get_weight (first_arg);
212 term_ostream_set_weight (term_ostream_t first_arg, term_weight_t weight)
215 ((struct term_ostream_representation_header *) (struct term_ostream_representation *) first_arg)->vtable;
216 vtable->set_weight (first_arg,weight);
221 term_ostream_get_posture (term_ostream_t first_arg)
224 ((struct term_ostream_representation_header *) (struct term_ostream_representation *) first_arg)->vtable;
225 return vtable->get_posture (first_arg);
230 term_ostream_set_posture (term_ostream_t first_arg, term_posture_t posture)
233 ((struct term_ostream_representation_header *) (struct term_ostream_representation *) first_arg)->vtable;
234 vtable->set_posture (first_arg,posture);
239 term_ostream_get_underline (term_ostream_t first_arg)
242 ((struct term_ostream_representation_header *) (struct term_ostream_representation *) first_arg)->vtable;
243 return vtable->get_underline (first_arg);
248 term_ostream_set_underline (term_ostream_t first_arg, term_underline_t underline)
251 ((struct term_ostream_representation_header *) (struct term_ostream_representation *) first_arg)->vtable;
252 vtable->set_underline (first_arg,underline);