Searched defs:old_to_new (Results 1 - 5 of 5) sorted by relevance

/external/bison/src/
H A Dmain.c130 state_number *old_to_new = xnmalloc (nstates, sizeof *old_to_new); local
132 state_remove_unreachable_states (old_to_new);
133 lalr_update_state_numbers (old_to_new, nstates_old);
134 conflicts_update_state_numbers (old_to_new, nstates_old);
135 free (old_to_new);
H A Dconflicts.c413 conflicts_update_state_numbers (state_number old_to_new[],
418 if (old_to_new[i] != nstates_old)
419 conflicts[old_to_new[i]] = conflicts[i];
412 conflicts_update_state_numbers(state_number old_to_new[], state_number nstates_old) argument
H A Dlalr.c461 lalr_update_state_numbers (state_number old_to_new[], state_number nstates_old) argument
472 /* If old_to_new[from_state[i]] = nstates_old, remove this goto
474 if (old_to_new[from_state[i]] != nstates_old)
478 aver (old_to_new[to_state[i]] != nstates_old);
479 from_state[ngotos_reachable] = old_to_new[from_state[i]];
480 to_state[ngotos_reachable] = old_to_new[to_state[i]];
H A Dstate.c425 state_remove_unreachable_states (state_number old_to_new[]) argument
438 old_to_new[i] = nstates_reachable++;
443 old_to_new[i] = nstates;
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DDFA.py33 new_state = state_map.old_to_new(epsilon_closure(old_state))
44 new_machine.add_transitions(new_state, event, state_map.old_to_new(old_states))
100 def old_to_new(self, old_state_set): member in class:StateMap
134 # return {self.old_to_new(old_state_set):1}

Completed in 131 milliseconds