Home | History | Annotate | Download | only in src

Lines Matching refs:fout

42 start_graph (FILE *fout)
44 fprintf (fout,
52 fprintf (fout,
56 fprintf (fout,
63 output_node (int id, char const *label, FILE *fout)
65 fprintf (fout, " %d [label=\"%s\"]\n", id, label);
70 char const *style, FILE *fout)
72 fprintf (fout, " %d -> %d [style=%s", source, destination, style);
74 fprintf (fout, " label=%s", quote (label));
75 fputs ("]\n", fout);
101 bool enabled, bool first, FILE *fout)
116 fprintf (fout, " %1$d -> \"%1$dR%2$d%3$s\" [",
124 fprintf (fout, "label=\"[%s]\", ", label);
129 fprintf (fout, "style=solid]\n");
132 fprintf (fout, " \"%dR%d%s\" [label=\"",
135 fprintf (fout, "R%d", ruleno);
137 fprintf (fout, "Acc");
139 fprintf (fout, "\", fillcolor=%s, shape=diamond, style=filled]\n",
156 output_red (state const *s, reductions const *reds, FILE *fout)
206 conclude_red (&dout, source, ruleno, false, firstd, fout);
207 conclude_red (&eout, source, ruleno, true, firste && !defaulted, fout);
215 finish_graph (FILE *fout)
217 fputs ("}\n", fout);