Symbol: decl
bin/sh/mknodes.c
168
char decl[2 * BUFLEN];
bin/sh/mknodes.c
181
sprintf(decl, "union node *%s", name);
bin/sh/mknodes.c
184
sprintf(decl, "struct nodelist *%s", name);
bin/sh/mknodes.c
187
sprintf(decl, "char *%s", name);
bin/sh/mknodes.c
190
sprintf(decl, "int %s", name);
bin/sh/mknodes.c
200
fp->decl = savestr(linep);
bin/sh/mknodes.c
204
fp->decl = savestr(decl);
bin/sh/mknodes.c
240
fprintf(hfile, " %s;\n", fp->decl);
bin/sh/mknodes.c
76
char *decl; /* declaration of field */
usr.bin/indent/indent.c
861
if (ps.p_stack[ps.tos] == decl && !ps.block_init) /* semicolons can be
usr.bin/indent/indent.c
948
case decl: /* we have a declaration type (int, etc.) */
usr.bin/indent/indent.c
949
parse(decl); /* let parser worry about indentation */
usr.bin/indent/lexi.c
249
return (decl);
usr.bin/indent/lexi.c
298
return (decl);
usr.bin/indent/lexi.c
343
return decl;
usr.bin/indent/lexi.c
345
if (state->last_token == decl) /* if this is a declared variable,
usr.bin/indent/parse.c
111
if (ps.p_stack[ps.tos] == stmt || ps.p_stack[ps.tos] == decl
usr.bin/indent/parse.c
308
case decl: /* finish of a declaration */
usr.bin/indent/parse.c
69
case decl: /* scanned a declaration word */
usr.bin/indent/parse.c
72
if (ps.p_stack[ps.tos] != decl) { /* only put one declaration
usr.bin/indent/parse.c
76
ps.p_stack[++ps.tos] = decl;
usr.bin/indent/parse.c
83
if (ps.p_stack[i] == decl)
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
123
} else if (streq(proc->args.decls->decl.type, "void")) {
usr.bin/rpcgen/rpc_clntout.c
136
pdeclaration(proc->args.argname, &l->decl, 0, ", ");
usr.bin/rpcgen/rpc_clntout.c
186
(streq(proc->args.decls->decl.type, "void"))) {
usr.bin/rpcgen/rpc_clntout.c
213
l->decl.name, l->decl.name);
usr.bin/rpcgen/rpc_clntout.c
235
stringfix(proc->args.decls->decl.type),
usr.bin/rpcgen/rpc_clntout.c
237
(newstyle) ? proc->args.decls->decl.name : "argp",
usr.bin/rpcgen/rpc_clntout.c
245
stringfix(proc->args.decls->decl.type),
usr.bin/rpcgen/rpc_clntout.c
247
(newstyle) ? proc->args.decls->decl.name : "argp",
usr.bin/rpcgen/rpc_cout.c
296
print_stat(1, &dl->decl);
usr.bin/rpcgen/rpc_cout.c
390
if ((dl->decl.prefix == NULL) &&
usr.bin/rpcgen/rpc_cout.c
391
((ptr = find_type(dl->decl.type)) != NULL) &&
usr.bin/rpcgen/rpc_cout.c
392
((dl->decl.rel == REL_ALIAS) ||
usr.bin/rpcgen/rpc_cout.c
393
(dl->decl.rel == REL_VECTOR))){
usr.bin/rpcgen/rpc_cout.c
398
if (dl->decl.rel == REL_ALIAS) {
usr.bin/rpcgen/rpc_cout.c
409
plus, dl->decl.array_max,
usr.bin/rpcgen/rpc_cout.c
413
dl->decl.array_max);
usr.bin/rpcgen/rpc_cout.c
435
&cur->decl);
usr.bin/rpcgen/rpc_cout.c
462
print_stat(indent + 2, &cur->decl);
usr.bin/rpcgen/rpc_cout.c
470
emit_inline(indent + 2, &cur->decl, flag);
usr.bin/rpcgen/rpc_cout.c
481
print_stat(indent + 1, &dl->decl);
usr.bin/rpcgen/rpc_cout.c
489
print_stat(indent + 1, &cur->decl);
usr.bin/rpcgen/rpc_cout.c
511
print_stat(indent + 2, &cur->decl);
usr.bin/rpcgen/rpc_cout.c
518
emit_inline(indent + 2, &cur->decl, flag);
usr.bin/rpcgen/rpc_cout.c
537
print_stat(1, &dl->decl);
usr.bin/rpcgen/rpc_cout.c
542
if (dl->decl.rel == REL_VECTOR){
usr.bin/rpcgen/rpc_cout.c
554
if ((dl->decl.prefix == NULL) &&
usr.bin/rpcgen/rpc_cout.c
555
((ptr = find_type(dl->decl.type)) != NULL) &&
usr.bin/rpcgen/rpc_cout.c
556
((dl->decl.rel == REL_ALIAS)||
usr.bin/rpcgen/rpc_cout.c
557
(dl->decl.rel == REL_VECTOR))) {
usr.bin/rpcgen/rpc_cout.c
558
if (dl->decl.rel == REL_ALIAS)
usr.bin/rpcgen/rpc_cout.c
577
print_stat(1, &dl->decl);
usr.bin/rpcgen/rpc_cout.c
593
print_stat(1, &dl->decl);
usr.bin/rpcgen/rpc_cout.c
626
emit_inline(int indent, declaration *decl, int flag)
usr.bin/rpcgen/rpc_cout.c
628
switch (decl->rel) {
usr.bin/rpcgen/rpc_cout.c
630
emit_single_in_line(indent, decl, flag, REL_ALIAS);
usr.bin/rpcgen/rpc_cout.c
636
f_print(fout, "%s *genp;\n\n", decl->type);
usr.bin/rpcgen/rpc_cout.c
638
f_print(fout, "for (i = 0, genp = objp->%s;\n", decl->name);
usr.bin/rpcgen/rpc_cout.c
640
f_print(fout, "i < %s; i++) {\n", decl->array_max);
usr.bin/rpcgen/rpc_cout.c
641
emit_single_in_line(indent + 2, decl, flag, REL_VECTOR);
usr.bin/rpcgen/rpc_cout.c
653
emit_single_in_line(int indent, declaration *decl, int flag, relation rel)
usr.bin/rpcgen/rpc_cout.c
661
f_print(fout, "objp->%s = IXDR_GET_", decl->name);
usr.bin/rpcgen/rpc_cout.c
665
upp_case = upcase(decl->type);
usr.bin/rpcgen/rpc_cout.c
682
decl->name);
usr.bin/rpcgen/rpc_hout.c
166
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
f_print(fout, "\tbool_t %s;\n", decl->name);
usr.bin/rpcgen/rpc_hout.c
202
f_print(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
335
streq(proc->args.decls->decl.type, "void")) {
usr.bin/rpcgen/rpc_hout.c
340
ptype(dl->decl.prefix, dl->decl.type, 1);
usr.bin/rpcgen/rpc_parse.c
121
decls->decl = dec;
usr.bin/rpcgen/rpc_parse.c
180
decls->decl = dec;
usr.bin/rpcgen/rpc_parse.c
188
decls->decl = dec;
usr.bin/rpcgen/rpc_parse.h
116
declaration decl;
usr.bin/rpcgen/rpc_sample.c
103
if(!streq(proc->args.decls->decl.type, "void"))
usr.bin/rpcgen/rpc_sample.c
104
ptype(proc->args.decls->decl.prefix,
usr.bin/rpcgen/rpc_sample.c
105
proc->args.decls->decl.type, 1);
usr.bin/rpcgen/rpc_sample.c
111
} else if (!streq(proc->args.decls->decl.type, "void")) {
usr.bin/rpcgen/rpc_sample.c
114
ptype(l->decl.prefix, l->decl.type, 1);
usr.bin/rpcgen/rpc_sample.c
115
if (strcmp(l->decl.type,"string") == 1)
usr.bin/rpcgen/rpc_sample.c
118
f_print(fout, "_%s;\n", l->decl.name);
usr.bin/rpcgen/rpc_sample.c
142
if(streq(proc->args.decls->decl.type, "void")) {
usr.bin/rpcgen/rpc_sample.c
152
} else if (streq(proc->args.decls->decl.type, "void")) {
usr.bin/rpcgen/rpc_sample.c
162
f_print(fout, "_%s, ", l->decl.name);
usr.bin/rpcgen/rpc_svcout.c
338
ptype(proc->args.decls->decl.prefix,
usr.bin/rpcgen/rpc_svcout.c
339
proc->args.decls->decl.type, 0);
usr.bin/rpcgen/rpc_svcout.c
353
if (!streq(proc->args.decls->decl.type, "void"))
usr.bin/rpcgen/rpc_svcout.c
359
l->decl.name);
usr.bin/rpcgen/rpc_svcout.c
390
if (streq(proc->args.decls->decl.type, "void"))
usr.bin/rpcgen/rpc_svcout.c
394
ptype(proc->args.decls->decl.prefix,
usr.bin/rpcgen/rpc_svcout.c
395
proc->args.decls->decl.type, 0);
usr.bin/rpcgen/rpc_svcout.c
462
p_xdrfunc(ARG, proc->args.decls->decl.type);
usr.bin/rpcgen/rpc_tblout.c
133
printit(proc->args.decls->decl.prefix,
usr.bin/rpcgen/rpc_tblout.c
134
proc->args.decls->decl.type);