Lines Matching refs:line

111   unsigned int line;
113 as_where (&file, &line);
116 fprintf (stderr, "%s:%u: ", file, line);
156 as_warn_internal (char *file, unsigned int line, char *buffer)
161 as_where (&file, &line);
165 fprintf (stderr, "%s:%u: ", file, line);
214 /* Like as_bad but the file name and line number are passed in.
220 as_warn_where (char *file, unsigned int line, const char *format, ...)
230 as_warn_internal (file, line, buffer);
235 as_warn_where (file, line, format, va_alist)
237 unsigned int line;
249 as_warn_internal (file, line, buffer);
257 as_bad_internal (char *file, unsigned int line, char *buffer)
262 as_where (&file, &line);
266 fprintf (stderr, "%s:%u: ", file, line);
312 /* Like as_bad but the file name and line number are passed in.
318 as_bad_where (char *file, unsigned int line, const char *format, ...)
327 as_bad_internal (file, line, buffer);
332 as_bad_where (file, line, format, va_alist)
334 unsigned int line;
345 as_bad_internal (file, line, buffer);
391 Arguments: Filename, line number, optional function name. */
394 as_assert (const char *file, int line, const char *fn)
399 fprintf (stderr, _("Assertion failure in %s at %s line %d.\n"),
400 fn, file, line);
402 fprintf (stderr, _("Assertion failure at %s line %d.\n"), file, line);
411 as_abort (const char *file, int line, const char *fn)
415 fprintf (stderr, _("Internal error, aborting at %s line %d in %s\n"),
416 file, line, fn);
418 fprintf (stderr, _("Internal error, aborting at %s line %d\n"),
419 file, line);
451 unsigned line,
469 as_bad_where (file, line, err,
472 as_warn_where (file, line, err,
488 as_bad_where (file, line, err,
491 as_warn_where (file, line, err,
511 as_bad_where (file, line, err, prefix, val_buf, min_buf, max_buf);
513 as_warn_where (file, line, err, prefix, val_buf, min_buf, max_buf);
523 unsigned line)
525 as_internal_value_out_of_range (prefix, value, min, max, file, line, 0);
534 unsigned line)
536 as_internal_value_out_of_range (prefix, value, min, max, file, line, 1);