Home
last modified time | relevance | path

Searched refs:YYLLOC_DEFAULT (Results 1 – 22 of 22) sorted by relevance

/external/bison/data/
Dc++.m4185 # Define YYLLOC_DEFAULT.
187 [[/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
191 # ifndef YYLLOC_DEFAULT
192 # define YYLLOC_DEFAULT(Current, Rhs, N) \
Dc.m4620 # Define YYLLOC_DEFAULT.
622 [[/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
626 #ifndef YYLLOC_DEFAULT
627 # define YYLLOC_DEFAULT(Current, Rhs, N) \
Dlalr1.cc663 YYLLOC_DEFAULT (yyloc, slice, yylen);
800 YYLLOC_DEFAULT (yyloc, yyerror_range, 2);
Dglr.cc98 # Hijack the post prologue to insert early definition of YYLLOC_DEFAULT
Dglr.c863 YYLLOC_DEFAULT ((*yylocp), (yyvsp - yyrhslen), yyrhslen);
1780 YYLLOC_DEFAULT ((yys1->yyloc), yyrhsloc, yynrhs);
2167 YYLLOC_DEFAULT ((yys->yyloc), yyerror_range, 2);]])[
2224 YYLLOC_DEFAULT (yyerrloc, (yystackp->yyerror_range), 2);]])[
Dyacc.c1791 YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen);]])[
1984 YYLLOC_DEFAULT (yyloc, yyerror_range, 2);
/external/bison/examples/calc++/
Dcalc++-parser.cc82 # ifndef YYLLOC_DEFAULT
83 # define YYLLOC_DEFAULT(Current, Rhs, N) \ macro
489 YYLLOC_DEFAULT (yyloc, slice, yylen); in parse()
688 YYLLOC_DEFAULT (yyloc, yyerror_range, 2); in parse()
/external/mesa3d/src/glsl/
Dglsl_parser_extras.h228 # define YYLLOC_DEFAULT(Current, Rhs, N) \ macro
/external/mesa3d/src/glsl/glcpp/
Dglcpp.h73 # define YYLLOC_DEFAULT(Current, Rhs, N) \ macro
/external/e2fsprogs/intl/
Dplural.c492 #ifndef YYLLOC_DEFAULT
493 # define YYLLOC_DEFAULT(Current, Rhs, N) \ macro
983 YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen); in yyparse()
/external/bison/src/
Dparse-gram.c114 #define YYLLOC_DEFAULT(Current, Rhs, N) (Current) = lloc_default (Rhs, N) macro
978 #ifndef YYLLOC_DEFAULT
979 # define YYLLOC_DEFAULT(Current, Rhs, N) \ macro
2194 YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen);
3077 YYLLOC_DEFAULT (yyloc, yyerror_range, 2);
Dparse-gram.y38 #define YYLLOC_DEFAULT(Current, Rhs, N) (Current) = lloc_default (Rhs, N) macro
/external/bison/
DTODO305 used %locations for that and defined YYLLOC_DEFAULT to call a function
308 YYLLOC_DEFAULT, because it is invoked before the action is executed.
DNEWS655 macro and use it in the default YYLLOC_DEFAULT. You are encouraged
659 # define YYLLOC_DEFAULT(Current, Rhs, N) \
674 # define YYLLOC_DEFAULT(Current, Rhs, N) \
687 ** YYLLOC_DEFAULT in C++:
689 The default implementation of YYLLOC_DEFAULT used to be issued in
692 override the user's YYLLOC_DEFAULT if provided.
1464 - In Yacc-style parsers YYLLOC_DEFAULT is now used to compute error
1698 The latter is now removed: YYLLOC_DEFAULT is fully responsible of
DChangeLog-2012236 YYLLOC_DEFAULT so that it uses its Rhs argument.
243 enabled, there's no such warning because YYLLOC_DEFAULT then uses
1097 lalrl1.cc: give a chance to user defined YYLLOC_DEFAULT.
1098 * data/lalr1.cc (YYLLOC_DEFAULT): Move its definition from the
1107 (YYLLOC_DEFAULT): Use it.
1110 * tests/calc.at (YYLLOC_DEFAULT): Use YYRHSLOC.
1142 Define YYLLOC_DEFAULT to adjust to these changes.
8576 YYLLOC_DEFAULT.
8580 YYLLOC_DEFAULT's usage for ambiguity locations.
8812 definition of YYLLOC_DEFAULT.
[all …]
DChangeLog867 * data/yacc.c (YYLLOC_DEFAULT, YYRHSLOC): Don't define when not
2389 YYLLOC_DEFAULT: factor, and don't export it in headers.
2392 * data/glr.cc: Do not define YYLLOC_DEFAULT in the header file,
/external/bison/tests/
Dactions.at155 # define YYLLOC_DEFAULT(Current, Rhs, N) \
166 # define YYLLOC_DEFAULT(Current, Rhs, N) \
1271 # define YYLLOC_DEFAULT(Current, Rhs, N) (void)(Rhs)
Dcalc.at230 # define YYLLOC_DEFAULT(Current, Rhs, N) \
/external/toybox/kconfig/
Dzconf.tab.c_shipped779 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
784 #ifndef YYLLOC_DEFAULT
785 # define YYLLOC_DEFAULT(Current, Rhs, N) \
/external/mesa3d/src/mesa/program/
Dprogram_parse.y99 #define YYLLOC_DEFAULT(Current, Rhs, N) \ macro
/external/bison/doc/
Dbison.texi1194 describes a special usage of @code{YYLLOC_DEFAULT} in GLR parsers.
4184 @vindex YYLLOC_DEFAULT
4185 @cindex GLR parsers and @code{YYLLOC_DEFAULT}
4190 rule. The @code{YYLLOC_DEFAULT} macro is invoked each time a rule is
4194 parser invokes @code{YYLLOC_DEFAULT} recursively to compute the location
4200 The @code{YYLLOC_DEFAULT} macro takes three parameters. The first one is
4206 right hand sides it passes to @code{YYLLOC_DEFAULT} is undefined.
4211 By default, @code{YYLLOC_DEFAULT} is defined this way:
4215 # define YYLLOC_DEFAULT(Cur, Rhs, N) \
4240 When defining @code{YYLLOC_DEFAULT}, you should consider that:
[all …]
Dbison.info1770 Action, which describes a special usage of `YYLLOC_DEFAULT' in GLR
4362 The `YYLLOC_DEFAULT' macro is invoked each time a rule is matched,
4366 `YYLLOC_DEFAULT' recursively to compute the location of that ambiguity.
4371 The `YYLLOC_DEFAULT' macro takes three parameters. The first one is
4377 `YYLLOC_DEFAULT' is undefined. When processing a syntax error, the
4382 By default, `YYLLOC_DEFAULT' is defined this way:
4384 # define YYLLOC_DEFAULT(Cur, Rhs, N) \
4406 When defining `YYLLOC_DEFAULT', you should consider that:
4409 one (the result) should be modified by `YYLLOC_DEFAULT'.
12312 * GLR parsers and YYLLOC_DEFAULT: Location Default Action.
[all …]