Searched refs:BcParseNext (Results 1 – 5 of 5) sorted by relevance
/external/bc/include/ |
D | bc.h | 160 void bc_parse_expr_status(BcParse *p, uint8_t flags, BcParseNext next); 168 extern const BcParseNext bc_parse_next_expr; 169 extern const BcParseNext bc_parse_next_param; 170 extern const BcParseNext bc_parse_next_print; 171 extern const BcParseNext bc_parse_next_rel; 172 extern const BcParseNext bc_parse_next_elem; 173 extern const BcParseNext bc_parse_next_for; 174 extern const BcParseNext bc_parse_next_read;
|
D | parse.h | 69 typedef struct BcParseNext { struct 72 } BcParseNext; typedef
|
/external/bc/src/ |
D | data.c | 776 const BcParseNext bc_parse_next_expr = 778 const BcParseNext bc_parse_next_param = 780 const BcParseNext bc_parse_next_print = 782 const BcParseNext bc_parse_next_rel = BC_PARSE_NEXT(1, BC_LEX_RPAREN); 783 const BcParseNext bc_parse_next_elem = BC_PARSE_NEXT(1, BC_LEX_RBRACKET); 784 const BcParseNext bc_parse_next_for = BC_PARSE_NEXT(1, BC_LEX_SCOLON); 785 const BcParseNext bc_parse_next_read =
|
D | bc_parse.c | 52 BcParseNext next); 1170 BcParseNext next) in bc_parse_expr_err() 1520 void bc_parse_expr_status(BcParse *p, uint8_t flags, BcParseNext next) { in bc_parse_expr_status()
|
/external/toybox/toys/pending/ |
D | bc.c | 432 typedef struct BcParseNext { struct 434 } BcParseNext; argument 538 BcStatus bc_parse_expr_status(BcParse *p, uint8_t flags, BcParseNext next); 759 BcParseNext bc_parse_next_expr = 761 BcParseNext bc_parse_next_param = 763 BcParseNext bc_parse_next_print = 765 BcParseNext bc_parse_next_rel = BC_PARSE_NEXT(1, BC_LEX_RPAREN); 766 BcParseNext bc_parse_next_elem = BC_PARSE_NEXT(1, BC_LEX_RBRACKET); 767 BcParseNext bc_parse_next_for = BC_PARSE_NEXT(1, BC_LEX_SCOLON); 768 BcParseNext bc_parse_next_read = [all …]
|