Lines Matching refs:actions
21 static action *add_reduce(action *actions, int ruleno, int symbol);
22 static action *add_reductions(int stateno, action *actions);
71 action *actions;
73 actions = get_shifts(stateno);
74 actions = add_reductions(stateno, actions);
75 return (actions);
81 action *actions, *temp;
85 actions = NULL;
100 temp->next = actions;
106 actions = temp;
110 return (actions);
114 add_reductions(int stateno, action *actions)
130 actions = add_reduce(actions, ruleno, j);
133 return (actions);
137 add_reduce(action *actions,
144 for (next = actions; next && next->symbol < symbol; next = next->next)
171 actions = temp;
173 return (actions);
259 /* following conditions handle multiple, i.e., conflicting, parse actions */