Lines Matching refs:ap

36 		   const char *msgid, va_list *ap)  in cpp_diagnostic_at()  argument
42 ret = pfile->cb.diagnostic (pfile, level, reason, richloc, _(msgid), ap); in cpp_diagnostic_at()
53 const char *msgid, va_list *ap) in cpp_diagnostic() argument
75 return cpp_diagnostic_at (pfile, level, reason, &richloc, msgid, ap); in cpp_diagnostic()
84 va_list ap; in cpp_error() local
87 va_start (ap, msgid); in cpp_error()
89 ret = cpp_diagnostic (pfile, level, CPP_W_NONE, msgid, &ap); in cpp_error()
91 va_end (ap); in cpp_error()
101 va_list ap; in cpp_warning() local
104 va_start (ap, msgid); in cpp_warning()
106 ret = cpp_diagnostic (pfile, CPP_DL_WARNING, reason, msgid, &ap); in cpp_warning()
108 va_end (ap); in cpp_warning()
118 va_list ap; in cpp_pedwarning() local
121 va_start (ap, msgid); in cpp_pedwarning()
123 ret = cpp_diagnostic (pfile, CPP_DL_PEDWARN, reason, msgid, &ap); in cpp_pedwarning()
125 va_end (ap); in cpp_pedwarning()
136 va_list ap; in cpp_warning_syshdr() local
139 va_start (ap, msgid); in cpp_warning_syshdr()
141 ret = cpp_diagnostic (pfile, CPP_DL_WARNING_SYSHDR, reason, msgid, &ap); in cpp_warning_syshdr()
143 va_end (ap); in cpp_warning_syshdr()
154 const char *msgid, va_list *ap) in cpp_diagnostic_with_line() argument
163 ret = pfile->cb.diagnostic (pfile, level, reason, &richloc, _(msgid), ap); in cpp_diagnostic_with_line()
175 va_list ap; in cpp_error_with_line() local
178 va_start (ap, msgid); in cpp_error_with_line()
181 column, msgid, &ap); in cpp_error_with_line()
183 va_end (ap); in cpp_error_with_line()
194 va_list ap; in cpp_warning_with_line() local
197 va_start (ap, msgid); in cpp_warning_with_line()
200 column, msgid, &ap); in cpp_warning_with_line()
202 va_end (ap); in cpp_warning_with_line()
213 va_list ap; in cpp_pedwarning_with_line() local
216 va_start (ap, msgid); in cpp_pedwarning_with_line()
219 column, msgid, &ap); in cpp_pedwarning_with_line()
221 va_end (ap); in cpp_pedwarning_with_line()
233 va_list ap; in cpp_warning_with_line_syshdr() local
236 va_start (ap, msgid); in cpp_warning_with_line_syshdr()
239 column, msgid, &ap); in cpp_warning_with_line_syshdr()
241 va_end (ap); in cpp_warning_with_line_syshdr()
252 va_list ap; in cpp_error_at() local
255 va_start (ap, msgid); in cpp_error_at()
259 msgid, &ap); in cpp_error_at()
261 va_end (ap); in cpp_error_at()
272 va_list ap; in cpp_error_at() local
275 va_start (ap, msgid); in cpp_error_at()
278 msgid, &ap); in cpp_error_at()
280 va_end (ap); in cpp_error_at()