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 240 * Called if a list of declaration specifiers contains a typedef name
241 * and other specifiers (except struct, union, enum, typedef name).
252 /* modifying typedef with '%s'; only qualifiers... */
260 /* modifying typedef with '%s'; only qualifiers allowed */
288 /* modifying typedef with '%s'; only qualifiers allowed */
301 * Remember the type, modifier or typedef name returned by the parser in the
315 * something like "typedef int a; int a b;"
370 /* something like "typedef int a; a long ..." */
773 /* typedef already qualified with '%s' */
779 /* 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 188 kwdef_sclass( "typedef", TYPEDEF, 78,0,1),
483 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 */
1585 * "typedef int a; f(int (a));" could be parsed as
1606 * "typedef double a;", the declaration "f(int (a));" is interpreted a
    [all...]
func.c 239 if (fsym->s_scl == TYPEDEF) {

Completed in 21 milliseconds