Home | History | Annotate | Download | only in lib

Lines Matching refs:found

35 mismatched_range(int looking_for, int upper_token, SORASTBase *found)

37 if ( found!=NULL ) {
39 "parse error: expected token range %d..%d found token %d\n",
41 found->type());
45 "parse error: expected token range %d..%d found NULL tree\n",
53 fprintf(stderr, "parse error: expected any token/tree found found NULL tree\n");
57 mismatched_token(int looking_for, SORASTBase *found)
59 if ( found!=NULL ) {
61 "parse error: expected token %d found token %d\n",
63 found->type());
67 "parse error: expected token %d found NULL tree\n",