Home
last modified time | relevance | path

Searched refs:BC_LEX_LPAREN (Results 1 – 5 of 5) sorted by relevance

/external/bc/src/bc/
Dparse.c144 if (t == BC_LEX_LPAREN) break; in bc_parse_operator()
161 while ((top = BC_PARSE_TOP_OP(p)) != BC_LEX_LPAREN) { in bc_parse_rightParen()
292 else if (p->l.t == BC_LEX_LPAREN) { in bc_parse_name()
323 if (BC_ERR(p->l.t != BC_LEX_LPAREN)) in bc_parse_noArgBuiltin()
343 if (BC_ERR(p->l.t != BC_LEX_LPAREN)) in bc_parse_builtin()
373 if (p->l.t != BC_LEX_LPAREN) { in bc_parse_scale()
448 if (BC_ERR(p->l.t == BC_LEX_LPAREN)) in bc_parse_incdec()
543 paren = t == BC_LEX_LPAREN; in bc_parse_return()
684 if (BC_ERR(p->l.t != BC_LEX_LPAREN)) in bc_parse_if()
733 if (BC_ERR(p->l.t != BC_LEX_LPAREN)) in bc_parse_while()
[all …]
Dlex.c197 l->t = (BcLexType) (c - '(' + BC_LEX_LPAREN); in bc_lex_token()
/external/bc/include/
Dlex.h114 BC_LEX_LPAREN, enumerator
/external/toybox/toys/pending/
Dbc.c367 BC_LEX_LPAREN, enumerator
2759 l->t = (BcLexType) (c - '(' + BC_LEX_LPAREN); in bc_lex_token()
3145 if (t == BC_LEX_LPAREN) break; in bc_parse_operator()
3164 while ((top = BC_PARSE_TOP_OP(p)) != BC_LEX_LPAREN) { in bc_parse_rightParen()
3284 else if (p->l.t == BC_LEX_LPAREN) { in bc_parse_name()
3313 if (p->l.t != BC_LEX_LPAREN) return bc_parse_err(p, BC_ERROR_PARSE_TOKEN); in bc_parse_read()
3331 if (p->l.t != BC_LEX_LPAREN) return bc_parse_err(p, BC_ERROR_PARSE_TOKEN); in bc_parse_builtin()
3357 if (p->l.t != BC_LEX_LPAREN) { in bc_parse_scale()
3416 if (p->l.t == BC_LEX_LPAREN) s = bc_parse_err(p, BC_ERROR_PARSE_TOKEN); in bc_parse_incdec()
3508 paren = t == BC_LEX_LPAREN; in bc_parse_return()
[all …]
/external/bc/src/
Ddata.c764 BC_LEX_OP_MODULUS, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_LPAREN,