Searched refs:BcLexType (Results 1 – 7 of 7) sorted by relevance
/external/bc/src/ |
D | bc_lex.c | 71 l->t = BC_LEX_KW_AUTO + (BcLexType) i; in bc_lex_identifier() 157 bc_lex_assign(BcLex* l, BcLexType with, BcLexType without) in bc_lex_assign() 259 l->t = (BcLexType) (c - '(' + BC_LEX_LPAREN); in bc_lex_token() 420 l->t = (BcLexType) (c - '[' + BC_LEX_LBRACKET); in bc_lex_token() 476 l->t = (BcLexType) (c - '{' + BC_LEX_LBRACE); in bc_lex_token()
|
D | bc_parse.c | 96 BcLexType t = p->l.t; in bc_parse_isDelimiter() 252 bc_parse_operator(BcParse* p, BcLexType type, size_t start, size_t* nexprs) in bc_parse_operator() 254 BcLexType t; in bc_parse_operator() 301 BcLexType top; in bc_parse_rightParen() 522 bc_parse_builtin(BcParse* p, BcLexType type, uint8_t flags, BcInst* prev) in bc_parse_builtin() 564 bc_parse_builtin3(BcParse* p, BcLexType type, uint8_t flags, BcInst* prev) in bc_parse_builtin3() 707 BcLexType type; in bc_parse_incdec() 710 BcLexType last = p->l.last; in bc_parse_incdec() 795 BcLexType type; in bc_parse_minus() 828 bc_parse_print(BcParse* p, BcLexType type) in bc_parse_print() [all …]
|
D | dc_parse.c | 135 dc_parse_token(BcParse* p, BcLexType t, uint8_t flags) in dc_parse_token() 379 BcLexType t; in dc_parse_expr()
|
D | parse.c | 269 bc_vec_init(&p->ops, sizeof(BcLexType), BC_DTOR_NONE); in bc_parse_init()
|
/external/bc/include/ |
D | lex.h | 107 typedef enum BcLexType enum 489 } BcLexType; typedef 516 BcLexType t; 519 BcLexType last;
|
D | bc.h | 288 #define BC_PARSE_TOP_OP(p) (*((BcLexType*) bc_vec_top(&(p)->ops)))
|
/external/toybox/toys/pending/ |
D | bc.c | 333 typedef enum BcLexType { enum 409 } BcLexType; typedef 418 BcLexType t; 419 BcLexType last; 525 #define BC_PARSE_TOP_OP(p) (*((BcLexType*) bc_vec_top(&(p)->ops))) 2630 l->t = BC_LEX_KEY_AUTO + (BcLexType) i; in bc_lex_identifier() 2679 static void bc_lex_assign(BcLex *l, BcLexType with, BcLexType without) { in bc_lex_assign() 2764 l->t = (BcLexType) (c - '(' + BC_LEX_LPAREN); in bc_lex_token() 2893 l->t = (BcLexType) (c - '[' + BC_LEX_LBRACKET); in bc_lex_token() 2947 l->t = (BcLexType) (c - '{' + BC_LEX_LBRACE); in bc_lex_token() [all …]
|