HomeSort by: relevance | last modified time | path
    Searched refs:TYPEDEF (Results 1 - 5 of 5) sorted by relevancy

  /src/usr.bin/xlint/lint1/
decl.c 242 * Called if a list of declaration specifiers contains a typedef name
243 * and other specifiers (except struct, union, enum, typedef name).
254 /* modifying typedef with '%s'; only qualifiers... */
262 /* modifying typedef with '%s'; only qualifiers allowed */
290 /* modifying typedef with '%s'; only qualifiers allowed */
303 * Remember the type, modifier or typedef name returned by the parser in the
317 * something like "typedef int a; int a b;"
375 /* something like "typedef int a; a long ..." */
774 /* typedef already qualified with '%s' */
780 /* typedef already qualified with '%s' *
    [all...]
lint1.h 44 typedef struct memory_pool {
68 typedef struct {
74 typedef struct {
81 typedef struct {
88 typedef struct {
104 typedef struct sym sym_t;
112 * If the structure has no tag name, its first typedef name is used to identify
115 typedef struct {
125 typedef struct {
141 bool t_typedef:1; /* type defined with typedef */
    [all...]
lex.c 190 kwdef_sclass( "typedef", TYPEDEF, 78,0,1),
487 return sym->s_scl == TYPEDEF ? T_TYPENAME : T_NAME;
cgram.y 293 /* storage classes (extern, static, auto, register and typedef) */
299 * float, double, void); see T_TYPENAME for types from typedef
930 if (dcs->d_scl == TYPEDEF)
931 /* typedef declares no type name */
938 if (dcs->d_scl == TYPEDEF)
940 error(249, "missing base type for typedef");
946 if (dcs->d_scl == TYPEDEF)
947 /* typedef declares no type name */
1587 * "typedef int a; f(int (a));" could be parsed as
1608 * "typedef double a;", the declaration "f(int (a));" is interpreted a
    [all...]
func.c 239 if (fsym->s_scl == TYPEDEF) {

Completed in 323 milliseconds