Lines Matching full:pull
245 * Pull Parser Function:: How to call @code{yypull_parse} and what it returns.
5010 becomes local in @code{yyparse} in pull mode but it becomes a member
5023 @findex %define api.push-pull
5028 A pull parser is called once and it takes control until all its input
5037 Normally, Bison generates a pull parser.
5039 parser (@pxref{%define Summary,,api.push-pull}):
5042 %define api.push-pull push
5048 compatibility with the impure Yacc pull mode interface. Unless you know
5053 %define api.push-pull push
5100 Bison also supports both the push parser interface along with the pull parser
5102 you should replace the @code{%define api.push-pull push} declaration with the
5103 @code{%define api.push-pull both} declaration. Doing this will create all of
5109 @code{%define api.push-pull both} declaration slower than the normal
5126 to the generated parser with @code{%define api.push-pull both} as it did for
5127 @code{%define api.push-pull push}.
5525 @c ================================================== api.push-pull
5527 @item @code{api.push-pull}
5528 @findex %define api.push-pull
5533 @item Purpose: Request a pull parser, a push parser, or both.
5538 @item Accepted Values: @code{pull}, @code{push}, @code{both}
5540 @item Default Value: @code{pull}
5882 * Pull Parser Function:: How to call @code{yypull_parse} and what it returns.
5996 function is available if either the @code{%define api.push-pull push} or
5997 @code{%define api.push-pull both} declaration is used.
6006 @node Pull Parser Function
6007 @section The Pull Parser Function @code{yypull_parse}
6014 stream. This function is available if the @code{%define api.push-pull both}
6030 This function is available if either the @code{%define api.push-pull push} or
6031 @code{%define api.push-pull both} declaration is used.
6049 function is available if either the @code{%define api.push-pull push} or
6050 @code{%define api.push-pull both} declaration is used.
10570 api.push-pull} have no effect.
11989 @xref{Pull Parser Function, ,The Pull Parser Function