Lines Matching refs:msgid

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()
80 cpp_error (cpp_reader * pfile, int level, const char *msgid, ...) in cpp_error() argument
85 va_start (ap, msgid); in cpp_error()
87 ret = cpp_diagnostic (pfile, level, CPP_W_NONE, msgid, &ap); in cpp_error()
96 cpp_warning (cpp_reader * pfile, int reason, const char *msgid, ...) in cpp_warning() argument
101 va_start (ap, msgid); in cpp_warning()
103 ret = cpp_diagnostic (pfile, CPP_DL_WARNING, reason, msgid, &ap); in cpp_warning()
112 cpp_pedwarning (cpp_reader * pfile, int reason, const char *msgid, ...) in cpp_pedwarning() argument
117 va_start (ap, msgid); in cpp_pedwarning()
119 ret = cpp_diagnostic (pfile, CPP_DL_PEDWARN, reason, msgid, &ap); in cpp_pedwarning()
129 cpp_warning_syshdr (cpp_reader * pfile, int reason, const char *msgid, ...) in cpp_warning_syshdr() argument
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()
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()
167 const char *msgid, ...) in cpp_error_with_line() argument
172 va_start (ap, msgid); in cpp_error_with_line()
175 column, msgid, &ap); in cpp_error_with_line()
186 const char *msgid, ...) in cpp_warning_with_line() argument
191 va_start (ap, msgid); in cpp_warning_with_line()
194 column, msgid, &ap); in cpp_warning_with_line()
205 const char *msgid, ...) in cpp_pedwarning_with_line() argument
210 va_start (ap, msgid); in cpp_pedwarning_with_line()
213 column, msgid, &ap); in cpp_pedwarning_with_line()
225 const char *msgid, ...) in cpp_warning_with_line_syshdr() argument
230 va_start (ap, msgid); in cpp_warning_with_line_syshdr()
233 column, msgid, &ap); in cpp_warning_with_line_syshdr()
244 const char *msgid, ...) in cpp_error_at() argument
249 va_start (ap, msgid); in cpp_error_at()
253 msgid, &ap); in cpp_error_at()
264 const char *msgid, ...) in cpp_error_at() argument
269 va_start (ap, msgid); in cpp_error_at()
272 msgid, &ap); in cpp_error_at()
282 cpp_errno (cpp_reader *pfile, int level, const char *msgid) in cpp_errno() argument
284 return cpp_error (pfile, level, "%s: %s", _(msgid), xstrerror (errno)); in cpp_errno()