Home
last modified time | relevance | path

Searched refs:yyerrok (Results 1 – 16 of 16) sorted by relevance

/external/bison/data/
Dglr.c839 [# undef yyerrok
840 # define yyerrok (yystackp->yyerrState = 0)
846 # define YYERROR return yyerrok, yyerr
856 yyerrok, yyerr
873 # undef yyerrok
Dlalr1.cc345 #define yyerrok (yyerrstatus_ = 0)
Dyacc.c736 #define yyerrok (yyerrstatus = 0)
/external/bison/src/
Dparse-gram.y555 yyerrok;
Dparse-gram.c924 #define yyerrok (yyerrstatus = 0) macro
2738 yyerrok;
/external/bison/examples/calc++/
Dcalc++-parser.cc138 #define yyerrok (yyerrstatus_ = 0) macro
/external/bison/tests/
Dcalc.at323 | '(' error ')' { $$ = 1111; yyerrok; }
569 # Check that yyerrok works properly: second error is not reported,
Dc++.at309 | error { $$ = YY_NULL; yyerrok; }
Dnamed-refs.at81 | '(' error ')' { $$ = 1111; yyerrok; }
246 | '(' error ')' { $$ = 1111; yyerrok; }
/external/e2fsprogs/intl/
Dplural.c452 #define yyerrok (yyerrstatus = 0) macro
/external/bison/doc/
Drefcard.tex492 \key{Recover normally from an error.} {yyerrok}
Dbison.info2519 | error '\n' { yyerrok; }
2527 `yyerrok', a macro defined automatically by Bison; its meaning is that
2529 difference between `yyerrok' and `yyerror'; neither one is a misprint.
2845 | error '\n' { yyerrok; }
6275 -- Macro: yyerrok `;'
7654 `yyerrok' in an action. If you do this in the error rule's action, no
7656 `yyerrok;' is a valid C statement.
10993 -- Macro: yyerrok
12588 * yyerrok <1>: Action Features. (line 81)
12589 * yyerrok <2>: Table of Symbols. (line 294)
[all …]
Dbison.texi2014 | error '\n' @{ yyerrok; @}
2024 @code{yyerrok}, a macro defined automatically by Bison; its meaning is
2026 difference between @code{yyerrok} and @code{yyerror}; neither one is a
2379 | error '\n' @{ yyerrok; @}
6480 @deffn {Macro} yyerrok @code{;}
8065 @findex yyerrok
8067 @code{yyerrok} in an action. If you do this in the error rule's action, no
8069 @samp{yyerrok;} is a valid C statement.
11864 @deffn {Macro} yyerrok
12313 @c LocalWords: ungetc stdin scanf sc calc ulator ls lm cc NEG prec yyerrok rr
/external/libpcap/
Dgrammar.c1395 #define yyerrok (yyerrstatus = 0) macro
/external/toybox/kconfig/
Dzconf.tab.c_shipped739 #define yyerrok (yyerrstatus = 0)
/external/bison/
DChangeLog-20123514 Check yyerrok in calc.at.
3515 * tests/calc.at (calc.y): Use yyerrok on "( error )".
3516 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
3521 Support yyerrok in lalr1.cc.