Home | History | Annotate | Download | only in data

Lines Matching full:yystack

101   private ]b4_location_type[ yylloc (YYStack rhs, int n)
223 private final class YYStack {
330 private int yyaction (int yyn, YYStack yystack, int yylen) ]b4_maybe_throws([b4_throws])[
333 ]b4_locations_if([b4_location_type[ yyloc = yylloc (yystack, yylen);]])[
342 yyval = yystack.valueAt (yylen - 1);
344 yyval = yystack.valueAt (0);
346 yy_reduce_print (yyn, yystack);
356 yystack.pop (yylen);
361 int yystate = yypgoto_[yyn - yyntokens_] + yystack.stateAt (0);
363 && yycheck_[yystate] == yystack.stateAt (0))
368 yystack.push (yystate, yyval]b4_locations_if([, yyloc])[);
440 YYStack yystack = new YYStack ();
466 yystack.push (yystate, yylval]b4_locations_if([, yylloc])[);
477 yystack.print (yyDebugStream);
548 yystack.push (yystate, yylval]b4_locations_if([, yylloc])[);
569 label = yyaction (yyn, yystack, yylen);
570 yystate = yystack.stateAt (0);
612 ]b4_locations_if([yyerrloc = yystack.locationAt (yylen - 1);])[
615 yystack.pop (yylen);
617 yystate = yystack.stateAt (0);
642 if (yystack.height == 0)
645 ]b4_locations_if([yyerrloc = yystack.locationAt (0);])[
646 yystack.pop ();
647 yystate = yystack.stateAt (0);
649 yystack.print (yyDebugStream);
654 yystack.push (0, null, yylloc);
655 yystack.push (0, null, yyerrloc);
656 yyloc = yylloc (yystack, 2);
657 yystack.pop (2);])[
664 yystack.push (yyn, yylval]b4_locations_if([, yyloc])[);
877 private void yy_reduce_print (int yyrule, YYStack yystack)