Home | History | Annotate | Download | only in lib

Lines Matching refs:_parser

27 _nextresult(STreeParser *_parser, AST **t)

29 _nextresult(_parser, t)
31 STreeParser *_parser;
37 while ( p->ast_right(_parser->write) != NULL )
39 p = p->ast_right(_parser->write);
41 return &(p->ast_right(_parser->write));
49 _copy_wildcard(STreeParser *_parser, AST *t, int root)
51 _copy_wildcard(_parser, t, root)
52 STreeParser *_parser;
59 if ( !root ) t->ast_right(_parser->write) = t->ast_right(_parser->read);
60 t->ast_down(_parser->write) = t->ast_down(_parser->read);
61 if ( t->ast_down(_parser->read)!=NULL )
62 _copy_wildcard(_parser, t->ast_down(_parser->read), 0);
65 t = t->ast_right(_parser->read);