Home | History | Annotate | Download | only in lint1

Lines Matching refs:msgid

594 #  define wrap_check_printf_at(func, msgid, pos, args...)		\
596 check_printf(__CONCAT(MSG_, msgid), ##args); \
597 (func)(msgid, pos, ##args); \
600 # define error_at(msgid, pos, args...) \
601 wrap_check_printf_at(error_at, msgid, pos, ##args)
602 # define warning_at(msgid, pos, args...) \
603 wrap_check_printf_at(warning_at, msgid, pos, ##args)
604 # define message_at(msgid, pos, args...) \
605 wrap_check_printf_at(message_at, msgid, pos, ##args)
607 # define wrap_check_printf(func, cond, msgid, args...) \
611 __FILE__, __LINE__, #func, msgid, \
612 __CONCAT(MSG_, msgid), __func__); \
613 check_printf(__CONCAT(MSG_, msgid), ##args); \
614 (func)(msgid, ##args); \
618 # define error(msgid, args...) wrap_check_printf(error, \
619 true, msgid, ##args)
620 # define warning(msgid, args...) wrap_check_printf(warning, \
621 true, msgid, ##args)
622 # define gnuism(msgid, args...) wrap_check_printf(gnuism, \
623 !allow_gcc || (!allow_trad && !allow_c99), msgid, ##args)
624 # define c99ism(msgid, args...) wrap_check_printf(c99ism, \
625 !allow_c99 && (!allow_gcc || !allow_trad), msgid, ##args)
626 # define c11ism(msgid, args...) wrap_check_printf(c11ism, \
627 !allow_c11 && !allow_gcc, msgid, ##args)
628 # define c23ism(msgid, args...) wrap_check_printf(c23ism, \
629 !allow_c23, msgid, ##args)