Searched refs:BC_LEX_LPAREN (Results 1 – 5 of 5) sorted by relevance
/external/bc/src/ |
D | bc_parse.c | 145 if (t == BC_LEX_LPAREN) break; in bc_parse_operator() 162 while ((top = BC_PARSE_TOP_OP(p)) != BC_LEX_LPAREN) { in bc_parse_rightParen() 276 else if (p->l.t == BC_LEX_LPAREN) { in bc_parse_name() 302 if (BC_ERR(p->l.t != BC_LEX_LPAREN)) bc_parse_err(p, BC_ERR_PARSE_TOKEN); in bc_parse_noArgBuiltin() 316 if (BC_ERR(p->l.t != BC_LEX_LPAREN)) in bc_parse_builtin() 341 if (p->l.t != BC_LEX_LPAREN) { in bc_parse_scale() 412 if (BC_ERR(p->l.t == BC_LEX_LPAREN)) in bc_parse_incdec() 493 paren = t == BC_LEX_LPAREN; in bc_parse_return() 623 if (BC_ERR(p->l.t != BC_LEX_LPAREN)) in bc_parse_if() 665 if (BC_ERR(p->l.t != BC_LEX_LPAREN)) in bc_parse_while() [all …]
|
D | bc_lex.c | 182 l->t = (BcLexType) (c - '(' + BC_LEX_LPAREN); in bc_lex_token()
|
D | data.c | 817 BC_LEX_LPAREN, BC_LEX_RPAREN, BC_LEX_OP_MULTIPLY, BC_LEX_OP_PLUS,
|
/external/bc/include/ |
D | lex.h | 129 BC_LEX_LPAREN, enumerator
|
/external/toybox/toys/pending/ |
D | bc.c | 367 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 …]
|