Home | History | Annotate | Download | only in lib

Lines Matching refs:found

14 mismatched_range( STreeParser *_parser, int looking_for, int upper_token, SORAST *found )

16 mismatched_range( _parser, looking_for, upper_token, found )
19 SORAST *found;
23 if ( found!=NULL ) {
25 "parse error: expected token range %d..%d found token %d\n",
27 found->token);
31 "parse error: expected token range %d..%d found NULL tree\n",
44 fprintf(stderr, "parse error: expected any token/tree found found NULL tree\n");
49 mismatched_token( STreeParser *_parser, int looking_for, SORAST *found )
51 mismatched_token( _parser, looking_for, found )
53 SORAST *found;
57 if ( found!=NULL ) {
59 "parse error: expected token %d found token %d\n",
61 found->token);
65 "parse error: expected token %d found NULL tree\n",