Lines Matching refs:next
114 temp->next = actions; in get_shifts()
152 action *temp, *prev, *next; in add_reduce() local
155 for (next = actions; next && next->symbol < symbol; next = next->next) in add_reduce()
156 prev = next; in add_reduce()
158 while (next && next->symbol == symbol && next->action_code == SHIFT) { in add_reduce()
159 prev = next; in add_reduce()
160 next = next->next; in add_reduce()
163 while (next && next->symbol == symbol && in add_reduce()
164 next->action_code == REDUCE && next->number < ruleno) { in add_reduce()
165 prev = next; in add_reduce()
166 next = next->next; in add_reduce()
170 temp->next = next; in add_reduce()
178 prev->next = temp; in add_reduce()
215 for (p = parser[i]; p; p = p->next) { in unused_rules()
251 for (p = parser[i]; p; p = p->next) { in remove_conflicts()
321 for (p = parser[stateno]; p; p = p->next) { in sole_reduction()
355 q = p->next; in free_action_row()