Home
last modified time | relevance | path

Searched refs:default_reduction (Results 1 – 4 of 4) sorted by relevance

/external/bison/src/
Dprint.c244 rule *default_reduction = NULL; in print_reductions() local
253 default_reduction = &rules[yydefact[s->number] - 1]; in print_reductions()
263 if (default_reduction) in print_reductions()
276 if (reds->rules[j] != default_reduction) in print_reductions()
308 if (reds->rules[j] != default_reduction) in print_reductions()
325 default_reduction, true); in print_reductions()
334 if (default_reduction) in print_reductions()
338 print_reduction (out, width, _("$default"), default_reduction, true); in print_reductions()
Dprint-xml.c244 rule *default_reduction = NULL; in print_reductions() local
255 default_reduction = &rules[yydefact[s->number] - 1]; in print_reductions()
264 if (default_reduction) in print_reductions()
277 if (reds->rules[j] != default_reduction) in print_reductions()
308 if (reds->rules[j] != default_reduction) in print_reductions()
319 default_reduction, true); in print_reductions()
327 if (default_reduction) in print_reductions()
329 "$default", default_reduction, true); in print_reductions()
Dgraphviz.c179 rule *default_reduction = NULL; in output_red() local
182 default_reduction = &rules[yydefact[s->number] - 1]; in output_red()
186 if (default_reduction && default_reduction == reds->rules[j]) in output_red()
Dtables.c242 rule *default_reduction = NULL; in action_row() local
323 default_reduction = reds->rules[0]; in action_row()
340 default_reduction = r; in action_row()
355 == rule_number_as_item_number (default_reduction->number) in action_row()
365 if (!default_reduction) in action_row()
373 return default_reduction; in action_row()
454 rule *default_reduction = action_row (states[i]); in token_actions() local
455 yydefact[i] = default_reduction ? default_reduction->number + 1 : 0; in token_actions()