Lines Matching refs:ap
36 const char *msgid, va_list *ap) in cpp_diagnostic_at() argument
42 ret = pfile->cb.error (pfile, level, reason, richloc, _(msgid), ap); in cpp_diagnostic_at()
52 const char *msgid, va_list *ap) in cpp_diagnostic() argument
74 return cpp_diagnostic_at (pfile, level, reason, &richloc, msgid, ap); in cpp_diagnostic()
82 va_list ap; in cpp_error() local
85 va_start (ap, msgid); in cpp_error()
87 ret = cpp_diagnostic (pfile, level, CPP_W_NONE, msgid, &ap); in cpp_error()
89 va_end (ap); in cpp_error()
98 va_list ap; in cpp_warning() local
101 va_start (ap, msgid); in cpp_warning()
103 ret = cpp_diagnostic (pfile, CPP_DL_WARNING, reason, msgid, &ap); in cpp_warning()
105 va_end (ap); in cpp_warning()
114 va_list ap; in cpp_pedwarning() local
117 va_start (ap, msgid); in cpp_pedwarning()
119 ret = cpp_diagnostic (pfile, CPP_DL_PEDWARN, reason, msgid, &ap); in cpp_pedwarning()
121 va_end (ap); in cpp_pedwarning()
131 va_list ap; in cpp_warning_syshdr() local
134 va_start (ap, msgid); in cpp_warning_syshdr()
136 ret = cpp_diagnostic (pfile, CPP_DL_WARNING_SYSHDR, reason, msgid, &ap); in cpp_warning_syshdr()
138 va_end (ap); in cpp_warning_syshdr()
148 const char *msgid, va_list *ap) in cpp_diagnostic_with_line() argument
157 ret = pfile->cb.error (pfile, level, reason, &richloc, _(msgid), ap); in cpp_diagnostic_with_line()
169 va_list ap; in cpp_error_with_line() local
172 va_start (ap, msgid); in cpp_error_with_line()
175 column, msgid, &ap); in cpp_error_with_line()
177 va_end (ap); in cpp_error_with_line()
188 va_list ap; in cpp_warning_with_line() local
191 va_start (ap, msgid); in cpp_warning_with_line()
194 column, msgid, &ap); in cpp_warning_with_line()
196 va_end (ap); in cpp_warning_with_line()
207 va_list ap; in cpp_pedwarning_with_line() local
210 va_start (ap, msgid); in cpp_pedwarning_with_line()
213 column, msgid, &ap); in cpp_pedwarning_with_line()
215 va_end (ap); in cpp_pedwarning_with_line()
227 va_list ap; in cpp_warning_with_line_syshdr() local
230 va_start (ap, msgid); in cpp_warning_with_line_syshdr()
233 column, msgid, &ap); in cpp_warning_with_line_syshdr()
235 va_end (ap); in cpp_warning_with_line_syshdr()
246 va_list ap; in cpp_error_at() local
249 va_start (ap, msgid); in cpp_error_at()
253 msgid, &ap); in cpp_error_at()
255 va_end (ap); in cpp_error_at()
266 va_list ap; in cpp_error_at() local
269 va_start (ap, msgid); in cpp_error_at()
272 msgid, &ap); in cpp_error_at()
274 va_end (ap); in cpp_error_at()