t_lex 154 usr/bin/test/test.c static enum token t_lex(char *); t_lex 189 usr/bin/test/test.c res = !oexpr(t_lex(*t_wp)); t_lex 213 usr/bin/test/test.c if (t_lex(*++t_wp) == BOR) t_lex 214 usr/bin/test/test.c return oexpr(t_lex(*++t_wp)) || res; t_lex 225 usr/bin/test/test.c if (t_lex(*++t_wp) == BAND) t_lex 226 usr/bin/test/test.c return aexpr(t_lex(*++t_wp)) && res; t_lex 236 usr/bin/test/test.c return !nexpr(t_lex(*++t_wp)); t_lex 249 usr/bin/test/test.c if ((nn = t_lex(*++t_wp)) == RPAREN) t_lex 252 usr/bin/test/test.c if (t_lex(*++t_wp) != RPAREN) t_lex 272 usr/bin/test/test.c if (t_lex(t_wp[1]), t_wp_op && t_wp_op->op_type == BINOP) { t_lex 286 usr/bin/test/test.c (void) t_lex(*++t_wp);