Home
last modified time | relevance | path

Searched refs:BcLexType (Results 1 – 7 of 7) sorted by relevance

/external/bc/src/
Dbc_lex.c71 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()
Dbc_parse.c96 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 …]
Ddc_parse.c135 dc_parse_token(BcParse* p, BcLexType t, uint8_t flags) in dc_parse_token()
379 BcLexType t; in dc_parse_expr()
Dparse.c269 bc_vec_init(&p->ops, sizeof(BcLexType), BC_DTOR_NONE); in bc_parse_init()
/external/bc/include/
Dlex.h107 typedef enum BcLexType enum
489 } BcLexType; typedef
516 BcLexType t;
519 BcLexType last;
Dbc.h288 #define BC_PARSE_TOP_OP(p) (*((BcLexType*) bc_vec_top(&(p)->ops)))
/external/toybox/toys/pending/
Dbc.c333 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 …]