Searched defs:dprec (Results 1 - 4 of 4) sorted by relevance

/external/bison/src/
H A Dsymlist.h48 int dprec; member in struct:symbol_list
H A Dgram.h72 RULES[R].dprec -- the dynamic precedence level of R (for GLR
189 int dprec; member in struct:__anon330
H A Doutput.c202 | rline, dprec, merger. |
215 int *dprec = xnmalloc (nrules, sizeof *dprec); local
235 dprec[r] = rules[r].dprec;
246 muscle_insert_int_table ("dprec", dprec, 0, 0, nrules);
257 free (dprec);
H A Dreader.c363 grammar_current_rule_dprec_set (int dprec, location loc)
366 warn_at (loc, _("%s affects only GLR parsers"), "%dprec");
367 if (dprec <= 0)
368 complain_at (loc, _("%s must be followed by positive number"), "%dprec");
369 else if (current_rule->dprec != 0)
370 complain_at (loc, _("only one %s allowed per rule"), "%dprec");
371 current_rule->dprec = dprec;
439 rules[ruleno].dprec = p->dprec;
360 grammar_current_rule_dprec_set(int dprec, location loc) argument
[all...]

Completed in 144 milliseconds