Lines Matching defs:symbols
37 * The linked list of symbols with the same name is ordered by scope
45 * The linked list of symbols with the same scope is unordered. Symbols
67 /** Linked list of symbols with the same scope. */
68 struct symbol *symbols;
76 /** Hash table containing all symbols in the symbol table. */
90 struct symbol *sym = scope->symbols;
205 new_sym->next_with_same_scope = table->current_scope->symbols;
209 table->current_scope->symbols = new_sym;
277 sym->next_with_same_scope = top_scope->symbols;
280 top_scope->symbols = sym;