Lines Matching refs:rules
38 rule *rules = NULL;
186 int length = rule_rhs_length (&rules[r]);
196 | Print the grammar's rules that match FILTER on OUT under TITLE. |
210 if (filter && !filter (&rules[r]))
214 else if (previous_lhs && previous_lhs != rules[r].lhs)
217 rule_lhs_print (&rules[r], previous_lhs, out);
218 rule_rhs_print (&rules[r], out);
219 previous_lhs = rules[r].lhs;
227 | Print the grammar's useful rules on OUT. |
263 fprintf (out, "Rules\n-----\n\n");
269 rule *rule_i = &rules[i];
292 fprintf (out, "Rules interpreted\n-----------------\n\n");
298 rule_print (&rules[r], out);
306 | Report on STDERR the rules that are not flagged USEFUL, using the |
317 if (!rules[r].useful)
319 location_print (stderr, rules[r].location);
321 rule_print (&rules[r], stderr);
330 free (rules);