HomeSort by relevance Sort by last modified time
    Searched refs:dprec (Results 1 - 8 of 8) sorted by null

  /external/bison/src/
symlist.h 48 int dprec; member in struct:symbol_list
reader.c 360 /* Attach dynamic precedence DPREC to the current rule. */
363 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
    [all...]
output.c 202 | 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);
gram.h 72 RULES[R].dprec -- the dynamic precedence level of R (for GLR
189 int dprec; member in struct:__anon1894
reader.h 71 void grammar_current_rule_dprec_set (int dprec, location loc);
symlist.c 47 res->dprec = 0;
  /bionic/libc/stdio/
vfprintf.c 197 int dprec; /* a copy of prec if [diouxX], 0 otherwise */ local
198 int realsz; /* field size expanded by dprec */
363 dprec = 0;
653 number: if ((dprec = prec) >= 0)
729 realsz = dprec > size ? dprec : size;
753 PAD(dprec - size, zeroes);
  /external/bison/tests/
testsuite     [all...]

Completed in 184 milliseconds