Lines Matching defs:next
11 * The above copyright notice and this permission notice (including the next
35 * Link to the next symbol in the table with the same name
43 * Link to the next symbol in the table with the same scope
64 /** Link to next (inner) scope level. */
65 struct scope_level *next;
92 table->current_scope = scope->next;
98 struct symbol *const next = sym->next_with_same_scope;
113 sym = next;
127 scope->next = table->current_scope;
250 for (top_scope = table->current_scope; top_scope->next != NULL;
251 top_scope = top_scope->next) {