Lines Matching defs:yypParser

126206 **    sqlite3ParserARG_STORE     Code to store %extra_argument into yypParser
126207 ** sqlite3ParserARG_FETCH Code to extract %extra_argument from yypParser
126249 #define sqlite3ParserARG_FETCH Parse *pParse = yypParser->pParse
126250 #define sqlite3ParserARG_STORE yypParser->pParse = pParse
127398 yyParser *yypParser, /* The parser */
127658 static void yyStackOverflow(yyParser *yypParser, YYMINORTYPE *yypMinor){
127660 yypParser->yyidx--;
127666 while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser);
127679 static void yyTraceShift(yyParser *yypParser, int yyNewState){
127685 for(i=1; i<=yypParser->yyidx; i++)
127686 fprintf(yyTraceFILE," %s",yyTokenName[yypParser->yystack[i].major]);
127701 yyParser *yypParser, /* The parser to be shifted */
127707 yypParser->yyidx++;
127709 if( yypParser->yyidx>yypParser->yyidxMax ){
127710 yypParser->yyidxMax = yypParser->yyidx;
127714 if( yypParser->yyidx>=YYSTACKDEPTH ){
127715 yyStackOverflow(yypParser, yypMinor);
127719 if( yypParser->yyidx>=yypParser->yystksz ){
127720 yyGrowStack(yypParser);
127721 if( yypParser->yyidx>=yypParser->yystksz ){
127722 yyStackOverflow(yypParser, yypMinor);
127727 yytos = &yypParser->yystack[yypParser->yyidx];
127731 yyTraceShift(yypParser, yyNewState);
128078 yyParser *yypParser, /* The parser */
128087 yymsp = &yypParser->yystack[yypParser->yyidx];
129353 yypParser->yyidx -= yysize;
129362 yypParser->yyidx++;
129367 yyTraceShift(yypParser, yyact);
129369 yy_shift(yypParser,yyact,yygoto,&yygotominor);
129373 yy_accept(yypParser);
129382 yyParser *yypParser /* The parser */
129390 while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser);
129401 yyParser *yypParser, /* The parser */
129418 yyParser *yypParser /* The parser */
129426 while( yypParser->yyidx>=0 ) yy_pop_parser_stack(yypParser);
129465 yyParser *yypParser; /* The parser */
129468 yypParser = (yyParser*)yyp;
129469 if( yypParser->yyidx<0 ){
129471 if( yypParser->yystksz <=0 ){
129474 yyStackOverflow(yypParser, &yyminorunion);
129478 yypParser->yyidx = 0;
129479 yypParser->yyerrcnt = -1;
129480 yypParser->yystack[0].stateno = 0;
129481 yypParser->yystack[0].major = 0;
129496 yyact = yy_find_shift_action(yypParser,(YYCODETYPE)yymajor);
129499 yy_shift(yypParser,yyact,yymajor,&yyminorunion);
129500 yypParser->yyerrcnt--;
129503 yy_reduce(yypParser,yyact-YY_MIN_REDUCE);
129534 if( yypParser->yyerrcnt<0 ){
129535 yy_syntax_error(yypParser,yymajor,yyminorunion);
129537 yymx = yypParser->yystack[yypParser->yyidx].major;
129545 yy_destructor(yypParser, (YYCODETYPE)yymajor,&yyminorunion);
129549 yypParser->yyidx >= 0 &&
129552 yypParser->yystack[yypParser->yyidx].stateno,
129555 yy_pop_parser_stack(yypParser);
129557 if( yypParser->yyidx < 0 || yymajor==0 ){
129558 yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion);
129559 yy_parse_failed(yypParser);
129564 yy_shift(yypParser,yyact,YYERRORSYMBOL,&u2);
129567 yypParser->yyerrcnt = 3;
129577 yy_syntax_error(yypParser,yymajor,yyminorunion);
129578 yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion);
129591 if( yypParser->yyerrcnt<=0 ){
129592 yy_syntax_error(yypParser,yymajor,yyminorunion);
129594 yypParser->yyerrcnt = 3;
129595 yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion);
129597 yy_parse_failed(yypParser);
129602 }while( yymajor!=YYNOCODE && yypParser->yyidx>=0 );