Symbol: decl
usr.bin/indent/indent.c
614
if (troff && !ps.dumped_decl_indent && !is_procname && ps.last_token == decl) {
usr.bin/indent/indent.c
915
if (ps.p_stack[ps.tos] == decl && !ps.block_init) /* semicolons can be
usr.bin/indent/indent.c
993
case decl: /* we have a declaration type (int, register,
usr.bin/indent/indent.c
995
parse(decl); /* let parser worry about indentation */
usr.bin/indent/lexi.c
231
return (decl);
usr.bin/indent/lexi.c
279
last_code = decl;
usr.bin/indent/lexi.c
280
return (decl);
usr.bin/indent/lexi.c
315
ps.last_token == decl ||
usr.bin/indent/lexi.c
319
last_code = decl;
usr.bin/indent/lexi.c
320
return decl;
usr.bin/indent/lexi.c
322
if (last_code == decl) /* if this is a declared variable, then
usr.bin/indent/parse.c
291
case decl: /* finish of a declaration */
usr.bin/indent/parse.c
61
case decl: /* scanned a declaration word */
usr.bin/indent/parse.c
64
if (ps.p_stack[ps.tos] != decl) { /* only put one declaration
usr.bin/indent/parse.c
68
ps.p_stack[++ps.tos] = decl;
usr.bin/indent/parse.c
75
if (ps.p_stack[i] == decl)
usr.bin/indent/parse.c
96
if (ps.p_stack[ps.tos] == stmt || ps.p_stack[ps.tos] == decl
usr.bin/rpcgen/rpc_clntout.c
107
ptype(proc->args.decls->decl.prefix,
usr.bin/rpcgen/rpc_clntout.c
108
proc->args.decls->decl.type, 1);
usr.bin/rpcgen/rpc_clntout.c
113
ptype(proc->args.decls->decl.prefix,
usr.bin/rpcgen/rpc_clntout.c
114
proc->args.decls->decl.type, 1);
usr.bin/rpcgen/rpc_clntout.c
117
} else if (streq(proc->args.decls->decl.type, "void")) {
usr.bin/rpcgen/rpc_clntout.c
128
fprintf(fout, "%s, ", l->decl.name);
usr.bin/rpcgen/rpc_clntout.c
131
pdeclaration(proc->args.argname, &l->decl, 1, ";\n");
usr.bin/rpcgen/rpc_clntout.c
135
pdeclaration(proc->args.argname, &l->decl, 0, ", ");
usr.bin/rpcgen/rpc_clntout.c
179
if (newstyle && !args2 && (streq(proc->args.decls->decl.type, "void"))) {
usr.bin/rpcgen/rpc_clntout.c
190
l->decl.name, l->decl.name);
usr.bin/rpcgen/rpc_clntout.c
204
stringfix(proc->args.decls->decl.type),
usr.bin/rpcgen/rpc_clntout.c
206
(newstyle ? proc->args.decls->decl.name : "argp"),
usr.bin/rpcgen/rpc_cout.c
331
print_stat(1, &dl->decl);
usr.bin/rpcgen/rpc_cout.c
423
print_stat(1, &dl->decl);
usr.bin/rpcgen/rpc_cout.c
427
if (dl->decl.rel == REL_VECTOR &&
usr.bin/rpcgen/rpc_cout.c
428
strcmp(dl->decl.type, "opaque") != 0) {
usr.bin/rpcgen/rpc_cout.c
437
if (dl->decl.prefix == NULL &&
usr.bin/rpcgen/rpc_cout.c
438
(ptr = find_type(dl->decl.type)) != NULL &&
usr.bin/rpcgen/rpc_cout.c
439
(dl->decl.rel == REL_ALIAS || dl->decl.rel == REL_VECTOR)) {
usr.bin/rpcgen/rpc_cout.c
440
if (dl->decl.rel == REL_ALIAS)
usr.bin/rpcgen/rpc_cout.c
459
print_stat(1, &dl->decl);
usr.bin/rpcgen/rpc_cout.c
479
if (dl->decl.prefix == NULL &&
usr.bin/rpcgen/rpc_cout.c
480
(ptr = find_type(dl->decl.type)) != NULL &&
usr.bin/rpcgen/rpc_cout.c
481
(dl->decl.rel == REL_ALIAS || dl->decl.rel == REL_VECTOR)) {
usr.bin/rpcgen/rpc_cout.c
486
if (dl->decl.rel == REL_ALIAS)
usr.bin/rpcgen/rpc_cout.c
499
dl->decl.array_max,
usr.bin/rpcgen/rpc_cout.c
504
dl->decl.array_max);
usr.bin/rpcgen/rpc_cout.c
536
print_stat(2, &cur->decl);
usr.bin/rpcgen/rpc_cout.c
558
print_stat(3, &cur->decl);
usr.bin/rpcgen/rpc_cout.c
566
emit_inline(&cur->decl, flag);
usr.bin/rpcgen/rpc_cout.c
575
print_stat(2, &dl->decl);
usr.bin/rpcgen/rpc_cout.c
583
print_stat(2, &cur->decl);
usr.bin/rpcgen/rpc_cout.c
606
print_stat(3, &cur->decl);
usr.bin/rpcgen/rpc_cout.c
613
emit_inline(&cur->decl, flag);
usr.bin/rpcgen/rpc_cout.c
628
print_stat(1, &dl->decl);
usr.bin/rpcgen/rpc_cout.c
666
emit_inline(decl, flag)
usr.bin/rpcgen/rpc_cout.c
667
declaration *decl;
usr.bin/rpcgen/rpc_cout.c
672
switch (decl->rel) {
usr.bin/rpcgen/rpc_cout.c
675
emit_single_in_line(decl, flag, REL_ALIAS);
usr.bin/rpcgen/rpc_cout.c
678
fprintf(fout, "\t\t\t{\n\t\t\t\t%s *genp;\n\n", decl->type);
usr.bin/rpcgen/rpc_cout.c
680
decl->name, decl->array_max);
usr.bin/rpcgen/rpc_cout.c
681
emit_single_in_line(decl, flag, REL_VECTOR);
usr.bin/rpcgen/rpc_cout.c
691
emit_single_in_line(decl, flag, rel)
usr.bin/rpcgen/rpc_cout.c
692
declaration *decl;
usr.bin/rpcgen/rpc_cout.c
703
fprintf(fout, "\t\tobjp->%s = IXDR_GET_", decl->name);
usr.bin/rpcgen/rpc_cout.c
707
upp_case = upcase(decl->type);
usr.bin/rpcgen/rpc_cout.c
722
fprintf(fout, "%s(buf, objp->%s);\n", upp_case, decl->name);
usr.bin/rpcgen/rpc_hout.c
165
pdeclaration(name, &l->decl, 1, ";\n");
usr.bin/rpcgen/rpc_hout.c
184
pdeclaration(name, &l->decl, 1, ";\n");
usr.bin/rpcgen/rpc_hout.c
195
declaration *decl;
usr.bin/rpcgen/rpc_hout.c
198
decl = &def->def.un.enum_decl;
usr.bin/rpcgen/rpc_hout.c
199
if (streq(decl->type, "bool")) {
usr.bin/rpcgen/rpc_hout.c
200
fprintf(fout, "\tbool_t %s;\n", decl->name);
usr.bin/rpcgen/rpc_hout.c
202
fprintf(fout, "\t%s %s;\n", decl->type, decl->name);
usr.bin/rpcgen/rpc_hout.c
209
decl = def->def.un.default_decl;
usr.bin/rpcgen/rpc_hout.c
210
if (decl && !streq(decl->type, "void")) {
usr.bin/rpcgen/rpc_hout.c
211
pdeclaration(name, decl, 2, ";\n");
usr.bin/rpcgen/rpc_hout.c
341
streq(proc->args.decls->decl.type, "void")) {
usr.bin/rpcgen/rpc_hout.c
345
ptype(dl->decl.prefix, dl->decl.type, 1);
usr.bin/rpcgen/rpc_parse.c
126
decls->decl = dec;
usr.bin/rpcgen/rpc_parse.c
186
decls->decl = dec;
usr.bin/rpcgen/rpc_parse.c
194
decls->decl = dec;
usr.bin/rpcgen/rpc_parse.h
91
declaration decl;
usr.bin/rpcgen/rpc_sample.c
104
if (!streq(proc->args.decls->decl.type, "void"))
usr.bin/rpcgen/rpc_sample.c
105
ptype(proc->args.decls->decl.prefix,
usr.bin/rpcgen/rpc_sample.c
106
proc->args.decls->decl.type, 1);
usr.bin/rpcgen/rpc_sample.c
112
} else if (!streq(proc->args.decls->decl.type, "void")) {
usr.bin/rpcgen/rpc_sample.c
115
ptype(l->decl.prefix, l->decl.type, 1);
usr.bin/rpcgen/rpc_sample.c
118
fprintf(fout, "_%s;\n", l->decl.name);
usr.bin/rpcgen/rpc_sample.c
138
if (streq(proc->args.decls->decl.type, "void"))
usr.bin/rpcgen/rpc_sample.c
143
} else if (streq(proc->args.decls->decl.type, "void")) {
usr.bin/rpcgen/rpc_sample.c
149
fprintf(fout, "_%s, ", l->decl.name);
usr.bin/rpcgen/rpc_svcout.c
305
ptype(proc->args.decls->decl.prefix,
usr.bin/rpcgen/rpc_svcout.c
306
proc->args.decls->decl.type, 0);
usr.bin/rpcgen/rpc_svcout.c
317
ptype(proc->args.decls->decl.prefix,
usr.bin/rpcgen/rpc_svcout.c
318
proc->args.decls->decl.type, 0);
usr.bin/rpcgen/rpc_svcout.c
329
if (!streq(proc->args.decls->decl.type, "void"))
usr.bin/rpcgen/rpc_svcout.c
333
fprintf(fout, "argp->%s, ", l->decl.name);
usr.bin/rpcgen/rpc_svcout.c
383
if (streq(proc->args.decls->decl.type,
usr.bin/rpcgen/rpc_svcout.c
388
ptype(proc->args.decls->decl.prefix,
usr.bin/rpcgen/rpc_svcout.c
389
proc->args.decls->decl.type, 0);
usr.bin/rpcgen/rpc_svcout.c
436
p_xdrfunc(ARG, proc->args.decls->decl.type);
usr.bin/rpcgen/rpc_tblout.c
131
printit(proc->args.decls->decl.prefix,
usr.bin/rpcgen/rpc_tblout.c
132
proc->args.decls->decl.type);
usr.sbin/snmpd/smi.c
158
struct oid *oid, *decl;
usr.sbin/snmpd/smi.c
168
decl = RB_FIND(oidtree, &smi_oidtree, oid);
usr.sbin/snmpd/smi.c
169
if (decl == NULL)