Home | History | Annotate | Download | only in lint1

Lines Matching defs:debug_word

394 debug_word(bool flag, const char *name)
411 debug_word(sym->s_keyword != NULL, "keyword");
412 debug_word(sym->s_bitfield, "bit-field");
413 debug_word(sym->s_set, "set");
414 debug_word(sym->s_used, "used");
415 debug_word(sym->s_param, "parameter");
416 debug_word(sym->s_register, "register");
417 debug_word(sym->s_defparam, "old-style-undefined");
418 debug_word(sym->s_return_type_implicit_int, "return-int");
419 debug_word(sym->s_osdef, "old-style");
420 debug_word(sym->s_inline, "inline");
421 debug_word(sym->s_ext_sym != NULL, "has-external");
422 debug_word(sym->s_scl != NO_SCL, scl_name(sym->s_scl));
423 debug_word(sym->s_keyword == NULL, def_name(sym->s_def));
469 debug_word(sym->s_osdef && sym->u.s_old_style_params != NULL,
508 debug_word(dl->d_qual.tq_const, "const");
509 debug_word(dl->d_qual.tq_restrict, "restrict");
510 debug_word(dl->d_qual.tq_volatile, "volatile");
511 debug_word(dl->d_qual.tq_atomic, "atomic");
512 debug_word(dl->d_inline, "inline");
513 debug_word(dl->d_multiple_storage_classes, "multiple_storage_classes");
514 debug_word(dl->d_invalid_type_combination, "invalid_type_combination");
515 debug_word(dl->d_nonempty_decl, "nonempty_decl");
516 debug_word(dl->d_no_type_specifier, "no_type_specifier");
517 debug_word(dl->d_asm, "asm");
518 debug_word(dl->d_packed, "packed");
519 debug_word(dl->d_used, "used");
520 debug_word(dl->d_noreturn, "noreturn");