OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dprec
(Results
1 - 7
of
7
) 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:__anon62
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/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);
Completed in 243 milliseconds