Lines Matching defs:existing
139 symbol_table_entry *existing = get_entry(v->name);
141 /* If there's already an existing function (not a constructor!) in
142 * the current scope, just update the existing entry to include 'v'.
144 if (existing->v == NULL && existing->t == NULL) {
145 existing->v = v;
149 /* If not declared at this scope, add a new entry. But if an existing
154 if (existing != NULL)
155 entry->f = existing->f;
196 symbol_table_entry *existing = get_entry(f->name);
197 if ((existing->f == NULL) && (existing->t == NULL)) {
198 existing->f = f;