Lines Matching refs:pParser
471 yyParser *pParser; in configparserAlloc() local
472 pParser = (yyParser*)(*mallocProc)( (size_t)sizeof(yyParser) ); in configparserAlloc()
473 if( pParser ){ in configparserAlloc()
474 pParser->yyidx = -1; in configparserAlloc()
476 return pParser; in configparserAlloc()
572 static int yy_pop_parser_stack(yyParser *pParser){ in yy_pop_parser_stack() argument
574 yyStackEntry *yytos = &pParser->yystack[pParser->yyidx]; in yy_pop_parser_stack()
576 if( pParser->yyidx<0 ) return 0; in yy_pop_parser_stack()
578 if( yyTraceFILE && pParser->yyidx>=0 ){ in yy_pop_parser_stack()
586 pParser->yyidx--; in yy_pop_parser_stack()
606 yyParser *pParser = (yyParser*)p; in configparserFree() local
607 if( pParser==NULL ) return; in configparserFree()
608 while( pParser->yyidx>=0 ) yy_pop_parser_stack(pParser); in configparserFree()
609 (*freeProc)((void*)pParser); in configparserFree()
621 yyParser *pParser, /* The parser */ in yy_find_shift_action() argument
625 int stateno = pParser->yystack[pParser->yyidx].stateno; in yy_find_shift_action()
647 return yy_find_shift_action(pParser, iFallback); in yy_find_shift_action()
665 yyParser *pParser, /* The parser */ in yy_find_reduce_action() argument
669 int stateno = pParser->yystack[pParser->yyidx].stateno; in yy_find_reduce_action()