Home
last modified time | relevance | path

Searched refs:BcLex (Results 1 – 8 of 8) sorted by relevance

/external/bc/include/
Dlex.h186 struct BcLex;
187 typedef BcStatus (*BcLexNext)(struct BcLex*);
189 typedef struct BcLex { struct
200 } BcLex; argument
202 void bc_lex_init(BcLex *l);
203 void bc_lex_free(BcLex *l);
204 void bc_lex_file(BcLex *l, const char *file);
205 BcStatus bc_lex_text(BcLex *l, const char *text);
206 BcStatus bc_lex_next(BcLex *l);
208 void bc_lex_lineComment(BcLex *l);
[all …]
Ddc.h49 BcStatus dc_lex_token(BcLex *l);
50 bool dc_lex_negCommand(BcLex *l);
Dparse.h79 BcLex l;
Dbc.h74 BcStatus bc_lex_token(BcLex *l);
/external/bc/src/
Dlex.c46 BcStatus bc_lex_invalidChar(BcLex *l, char c) { in bc_lex_invalidChar()
51 void bc_lex_lineComment(BcLex *l) { in bc_lex_lineComment()
56 BcStatus bc_lex_comment(BcLex *l) { in bc_lex_comment()
84 void bc_lex_whitespace(BcLex *l) { in bc_lex_whitespace()
90 void bc_lex_commonTokens(BcLex *l, char c) { in bc_lex_commonTokens()
96 static size_t bc_lex_num(BcLex *l, char start, bool int_only) { in bc_lex_num()
132 BcStatus bc_lex_number(BcLex *l, char start) { in bc_lex_number()
177 void bc_lex_name(BcLex *l) { in bc_lex_name()
193 void bc_lex_init(BcLex *l) { in bc_lex_init()
198 void bc_lex_free(BcLex *l) { in bc_lex_free()
[all …]
/external/bc/src/dc/
Dlex.c45 bool dc_lex_negCommand(BcLex *l) { in dc_lex_negCommand()
50 static BcStatus dc_lex_register(BcLex *l) { in dc_lex_register()
75 static BcStatus dc_lex_string(BcLex *l) { in dc_lex_string()
112 BcStatus dc_lex_token(BcLex *l) { in dc_lex_token()
/external/bc/src/bc/
Dlex.c46 static BcStatus bc_lex_identifier(BcLex *l) { in bc_lex_identifier()
80 static BcStatus bc_lex_string(BcLex *l) { in bc_lex_string()
104 static void bc_lex_assign(BcLex *l, BcLexType with, BcLexType without) { in bc_lex_assign()
112 BcStatus bc_lex_token(BcLex *l) { in bc_lex_token()
/external/toybox/toys/pending/
Dbc.c406 typedef struct BcLex { struct
417 } BcLex; argument
443 BcLex l;
474 BcStatus bc_lex_token(BcLex *l);
2461 BcStatus bc_lex_invalidChar(BcLex *l, char c) { in bc_lex_invalidChar()
2466 void bc_lex_lineComment(BcLex *l) { in bc_lex_lineComment()
2471 BcStatus bc_lex_comment(BcLex *l) { in bc_lex_comment()
2498 void bc_lex_whitespace(BcLex *l) { in bc_lex_whitespace()
2504 BcStatus bc_lex_number(BcLex *l, char start) { in bc_lex_number()
2552 BcStatus bc_lex_name(BcLex *l) { in bc_lex_name()
[all …]