Lines Matching refs:action
16 static action *add_reduce(action *actions, int ruleno, int symbol);
17 static action *add_reductions(int stateno, action *actions);
18 static action *get_shifts(int stateno);
19 static action *parse_actions(int stateno);
23 static void free_action_row(action *p);
28 action **parser;
51 parser = NEW2(nstates, action *); in make_parser()
63 static action *
66 action *actions; in parse_actions()
73 static action *
76 action *actions, *temp; in get_shifts()
94 temp = NEW(action); in get_shifts()
108 static action *
109 add_reductions(int stateno, action *actions) in add_reductions()
131 static action *
132 add_reduce(action *actions, in add_reduce()
136 action *temp, *prev, *next; in add_reduce()
155 temp = NEW(action); in add_reduce()
196 action *p; in unused_rules()
231 action *p, *pref = 0; in remove_conflicts()
349 action *p; in sole_reduction()
383 free_action_row(action *p) in free_action_row()
385 action *q; in free_action_row()