Lines Matching refs:next

108 	nextarg = arg->next;
110 nextitem = item->next;
124 nextarg = arg->next;
126 nextitem = item->next;
160 for (arg = inArgs; arg; arg = arg->next) { /* foreach input arg */
162 for (item = arg->items; item; item = item->next) {
170 if (prevItem) {prevItem->next = item->next;}
171 else if (item == arg->items) {arg->items = item->next;};
186 if (prevItem) {prevItem->next = item->next;}
187 else if (item == arg->items) {arg->items = item->next;};
195 if (prevItem) {prevItem->next = item->next;}
196 else if (item == arg->items) {arg->items = item->next;};
207 if (prevArg) { prevArg->next = arg->next;}
208 else if (arg == inArgs) {inArgs = arg->next;}
215 for (arg = outArgs; arg; arg = arg->next) { /* foreach output arg */
217 for (item = arg->items; item; item = item->next) {
223 if (prevItem) {prevItem->next = item->next;}
224 else if (item == arg->items) {arg->items = item->next;};
234 if (prevItem) {prevItem->next = item->next;}
235 else if (item == arg->items) {arg->items = item->next;};
244 if (prevItem) {prevItem->next = item->next;}
245 else if (item == arg->items) {arg->items = item->next;};
253 if (prevItem) {prevItem->next = item->next;}
254 else if (item == arg->items) {arg->items = item->next;};
266 prevArg->next = arg->next;
268 outArgs = arg->next;
276 for (arg = inArgs; arg; arg = arg->next) { /* foreach input arg */
277 for (item = arg->items; item; item = item->next) {
300 for (arg = outArgs; arg; arg = arg->next) { /* foreach output arg */
301 for (item = arg->items; item; item = item->next) {
334 token->next = NULL;
374 token->next = NULL;
418 arg->next = NULL;
427 item->next = NULL;
436 item->next = NULL;
446 item->next = NULL;
487 arg->next = args;
506 token->next = PSWToken(T_NAME, ss);
512 token->next = PSWToken(T_NAME, ss);
523 for (t = lastToken; t->next; t = t->next);
524 lastToken = t->next = token;
532 arg->next = NULL;
535 for (a = args; a->next; a = a->next);
537 a->next = arg;
544 item->next = NULL;
547 for (t = items; t->next; t = t->next);
549 t->next = item;