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

  /external/bison/src/
reader.h 51 void grammar_current_rule_dprec_set (int dprec, location loc);
output.c 214 | rline, dprec, merger. |
227 int *dprec = xnmalloc (nrules, sizeof *dprec); local
247 dprec[r] = rules[r].dprec;
258 muscle_insert_int_table ("dprec", dprec, 0, 0, nrules);
269 free (dprec);
symlist.h 73 int dprec; member in struct:symbol_list
gram.h 70 RULES[R].dprec -- the dynamic precedence level of R (for GLR
189 int dprec; member in struct:__anon4727
reader.c 438 /* Attach dynamic precedence DPREC to the current rule. */
441 grammar_current_rule_dprec_set (int dprec, location loc)
444 warn_at (loc, _("%s affects only GLR parsers"), "%dprec");
445 if (dprec <= 0)
446 complain_at (loc, _("%s must be followed by positive number"), "%dprec");
447 else if (current_rule->dprec != 0)
448 complain_at (loc, _("only one %s allowed per rule"), "%dprec");
449 current_rule->dprec = dprec;
527 rules[ruleno].dprec = p->dprec
    [all...]
symlist.c 48 res->dprec = 0;
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vfprintf.c 320 int dprec; /* a copy of prec if %[diouxX], 0 otherwise */ local
321 int realsz; /* field size expanded by dprec */
508 dprec = 0;
910 number: if ((dprec = prec) >= 0)
988 realsz = dprec > size ? dprec : size;
1011 PAD(dprec - size, zeroes);
    [all...]
vfwprintf.c 323 int dprec; /* a copy of prec if %[diouxX], 0 otherwise */ local
324 int realsz; /* field size expanded by dprec */
484 dprec = 0;
886 number: if ((dprec = prec) >= 0)
964 realsz = dprec > size ? dprec : size;
987 PAD(dprec - size, zeroes);
    [all...]

Completed in 93 milliseconds