Home | History | Annotate | Download | only in test

Lines Matching defs:t_lex

177 static enum token t_lex(char *);
313 res = !oexpr(t_lex(*t_wp));
428 if (t_lex(*++t_wp) == BOR)
429 return oexpr(t_lex(*++t_wp)) || res;
442 if (t_lex(*++t_wp) == BAND)
443 return aexpr(t_lex(*++t_wp)) && res;
453 return !nexpr(t_lex(*++t_wp));
466 if ((nn = t_lex(*++t_wp)) == RPAREN)
469 if (t_lex(*++t_wp) != RPAREN)
480 if (t_lex(t_wp[1]), t_wp_op && t_wp_op->op_type == BINOP) {
511 (void) t_lex(*++t_wp);
815 t_lex(char *s)