Lines Matching refs:next

107   for (arg = args; arg; arg = arg->next)
108 for (item = arg->items; item; item = item->next)
116 while (body) { n++; body = body->next; }
124 tt->next = ll;
133 tt->next = ll;
137 while((temp->next != NULL) && strcmp((char *)(temp->token->val), (char *)(t->val)))
138 temp = temp->next;
139 tt->next = temp->next;
140 temp->next = tt;
275 tl = tokenList->next;
317 for (t = body; t->next; t = t->next) ;
320 token->next = PSWToken(T_INT, (char *)(long)n);
323 token->next->next = PSWToken(T_NAME, ss);
326 token->next->next->next = PSWToken(T_NAME, ss);
328 t->next = token;
340 for (arg = hdr->inArgs; arg; arg = arg->next) {
342 for (item = arg->items; item; item = item->next) {
346 if (item->next) fprintf(stm, ", ");
350 for (arg = hdr->outArgs; arg; arg = arg->next) {
352 for (item = arg->items; item; item = item->next) {
356 if (item->next) fprintf(stm, ", ");
383 for (arg = hdr->inArgs; arg; arg = arg->next) {
385 for (item = arg->items; item; item = item->next) {
392 if (item->next) fprintf(stm, ", ");
394 if (arg->next) fprintf(stm, ", ");
397 for (arg = hdr->outArgs; arg; arg = arg->next) {
399 for (item = arg->items; item; item = item->next) {
405 if (item->next) fprintf(stm, ", ");
407 if (arg->next) fprintf(stm, ", ");
468 bodies = c->next;
475 for (t = c->token; t; t = t->next) {
544 for (tl = namedInputArrays; tl; tl = tl->next) {
550 for (tl = literalStrings; tl; tl = tl->next) {
567 for (tl = namedInputStrings; tl; tl = tl->next) {
620 bodies = c->next;
627 for (t = c->token; t; t = t->next) {
633 /* emit the token type as the next record field */
723 for (tl = namedInputArrays; tl; tl = tl->next) {
734 for (tl = literalStrings; tl; tl = tl->next) {
753 /* emit the string type as the next record field */
762 for (tl = namedInputStrings; tl; tl = tl->next) {
1018 bodies = c->next;
1020 for (t = c->token; t; t = t->next) {
1023 /* emit the next record field constructor */
1080 for (tl = strings; tl; tl = tl->next) {
1116 for (arg = outArgs; arg; arg = arg->next)
1117 for (item = arg->items; item; item = item->next)
1129 for (arg = outArgs; arg; arg = arg->next) {
1130 for (item = arg->items; item; item = item->next) {
1141 for (arg = outArgs; arg; arg = arg->next) {
1142 for (item = arg->items; item; item = item->next) {
1199 for (n = nameTokens; n!= NULL; n = n->next) {
1206 if (n->next) {printf(",\n"); outlineno++;}
1228 for (n = nameTokens; n!= NULL; n = n->next) {
1286 for (t = body; t; t = t->next) {
1317 for (t = body; t; t = t->next) {
1324 t1 = t->next;
1333 t->next = b;
1334 trsq->next = t1;
1335 if (b == NULL) t->next = trsq;
1338 for (last = b; last->next; last = last->next) ;
1339 last->next = trsq;
1381 for (tl = namedInputArrays; tl; tl = tl->next) {
1392 for (tl = namedInputStrings; tl; tl = tl->next) {
1443 for (tl = literalStrings; tl; tl = tl->next) {
1486 for (t = body; t; t = t->next) {
1570 for (t = body; t; t = t->next) {
1613 for (arg = args; arg; arg = arg->next) {
1615 for (item = arg->items; item; item = item->next) {
1667 for (n = nameTokens; n!= NULL; n = n->next) {
1682 for (tl = namedInputArrays; tl; tl = tl->next) {
1695 for (tl = namedInputStrings; tl; tl = tl->next) {
1791 for (arg = hdr->inArgs; arg; arg = arg->next) {
1792 for (item = arg->items; item; item = item->next) {
1795 if (item->next) printf(", ");
1797 if (arg->next || hdr->outArgs) printf(", ");
1799 for (arg = hdr->outArgs; arg; arg = arg->next) {
1800 for (item = arg->items; item; item = item->next) {
1802 if (item->next) printf(", ");
1804 if (arg->next) printf(", ");
1838 for (arg = hdr->inArgs; arg && !large; arg = arg->next) {
1839 for (item = arg->items; item; item = item->next) {
1936 nexttoken = t->next;