Symbol: UNION
usr.bin/xlint/common/inittyp.c
117
typeinfo("union", UNION, UNION, 0, 0, ' '),
usr.bin/xlint/common/tyname.c
293
case UNION:
usr.bin/xlint/lint1/decl.c
1666
else if (kind == UNION)
usr.bin/xlint/lint1/decl.c
2058
else if (dsym->s_type->t_tspec == UNION)
usr.bin/xlint/lint1/decl.c
2068
&& dsym->s_type->t_subt->t_tspec == UNION)
usr.bin/xlint/lint1/decl.c
3048
case UNION:
usr.bin/xlint/lint1/decl.c
329
if (t == STRUCT || t == UNION || t == ENUM) {
usr.bin/xlint/lint1/init.c
286
case UNION:
usr.bin/xlint/lint1/init.c
489
case UNION:
usr.bin/xlint/lint1/init.c
673
if (!allow_c90 && tp->t_tspec == UNION)
usr.bin/xlint/lint1/lex.c
191
kwdef("union", T_STRUCT_OR_UNION, .u.kw_tspec = UNION, 78,0,1),
usr.bin/xlint/lint1/lint1.h
760
return t == STRUCT || t == UNION;
usr.bin/xlint/lint1/tree.c
1535
case UNION:
usr.bin/xlint/lint1/tree.c
2666
} else if (t != STRUCT && t != UNION) {
usr.bin/xlint/lint1/tree.c
2991
if (lt == UNION && rt == UNION && ltp->u.sou == rtp->u.sou)
usr.bin/xlint/lint1/tree.c
4037
if (nst == UNION || ost == UNION) {
usr.bin/xlint/lint1/tree.c
4038
const type_t *union_tp = nst == UNION ? nstp : ostp;
usr.bin/xlint/lint1/tree.c
4039
const type_t *other_tp = nst == UNION ? ostp : nstp;
usr.bin/xlint/lint1/tree.c
4086
!(nst == UNION && union_contains(nstp, ostp))) {
usr.bin/xlint/lint1/tree.c
4527
case UNION:
usr.bin/xlint/lint1/tree.c
4646
} else if (nt == UNION)
usr.bin/xlint/lint2/chk.c
1279
if (t == STRUCT || t == UNION) {
usr.bin/xlint/lint2/chk.c
261
if ((t1 == STRUCT || t1 == UNION) && !eq) {
usr.bin/xlint/lint2/emit2.c
70
} else if (ts == ENUM || ts == STRUCT || ts == UNION) {
usr.bin/xlint/lint2/read.c
632
return s == 'e' ? ENUM : (s == 's' ? STRUCT : UNION);
usr.bin/xlint/lint2/read.c
714
case UNION:
usr.bin/xlint/lint2/read.c
853
t = UNION;
usr.bin/xlint/lint2/read.c
893
case UNION: