Searched refs:BcLexType (Results 1 – 7 of 7) sorted by relevance
/external/bc/src/bc/ |
D | lex.c | 59 l->t = BC_LEX_KW_AUTO + (BcLexType) i; in bc_lex_identifier() 104 static void bc_lex_assign(BcLex *l, BcLexType with, BcLexType without) { in bc_lex_assign() 197 l->t = (BcLexType) (c - '(' + BC_LEX_LPAREN); in bc_lex_token() 344 l->t = (BcLexType) (c - '[' + BC_LEX_LBRACKET); in bc_lex_token() 398 l->t = (BcLexType) (c - '{' + BC_LEX_LBRACE); in bc_lex_token()
|
D | parse.c | 63 BcLexType t = p->l.t; in bc_parse_isDelimiter() 134 static void bc_parse_operator(BcParse *p, BcLexType type, in bc_parse_operator() 137 BcLexType t; in bc_parse_operator() 159 BcLexType top; in bc_parse_rightParen() 336 static BcStatus bc_parse_builtin(BcParse *p, BcLexType type, in bc_parse_builtin() 402 BcLexType type; in bc_parse_incdec() 405 BcLexType last = p->l.last; in bc_parse_incdec() 466 BcLexType type; in bc_parse_minus() 491 BcLexType t; in bc_parse_print() 531 BcLexType t; in bc_parse_return() [all …]
|
/external/bc/include/ |
D | lex.h | 56 typedef enum BcLexType { enum 184 } BcLexType; typedef 196 BcLexType t; 197 BcLexType last;
|
D | bc.h | 128 #define BC_PARSE_TOP_OP(p) (*((BcLexType*) bc_vec_top(&(p)->ops)))
|
/external/bc/src/dc/ |
D | parse.c | 113 static BcStatus dc_parse_token(BcParse *p, BcLexType t, uint8_t flags) { in dc_parse_token() 220 BcLexType t; in dc_parse_expr()
|
/external/toybox/toys/pending/ |
D | bc.c | 328 typedef enum BcLexType { enum 404 } BcLexType; typedef 413 BcLexType t; 414 BcLexType last; 520 #define BC_PARSE_TOP_OP(p) (*((BcLexType*) bc_vec_top(&(p)->ops))) 2625 l->t = BC_LEX_KEY_AUTO + (BcLexType) i; in bc_lex_identifier() 2674 static void bc_lex_assign(BcLex *l, BcLexType with, BcLexType without) { in bc_lex_assign() 2759 l->t = (BcLexType) (c - '(' + BC_LEX_LPAREN); in bc_lex_token() 2888 l->t = (BcLexType) (c - '[' + BC_LEX_LBRACKET); in bc_lex_token() 2942 l->t = (BcLexType) (c - '{' + BC_LEX_LBRACE); in bc_lex_token() [all …]
|
/external/bc/src/ |
D | parse.c | 181 bc_vec_init(&p->ops, sizeof(BcLexType), NULL); in bc_parse_init()
|