Home
last modified time | relevance | path

Searched refs:lex_hex (Results 1 – 4 of 4) sorted by relevance

/dports/devel/re2c/re2c-2.2/examples/c/real_world/
H A Dcxx98.re86 static bool lex_hex(const unsigned char *s, const unsigned char *e, unsigned long &u)
126 "\\u" [0-9a-fA-F]{4} { lex_hex(in.tok, in.cur, u); continue; }
127 "\\U" [0-9a-fA-F]{8} { lex_hex(in.tok, in.cur, u); continue; }
128 "\\x" [0-9a-fA-F]+ { if (!lex_hex(in.tok, in.cur, u)) return false; continue; }
217 hex { if (!lex_hex(in.tok, in.cur, u)) return false; goto sfx; }
H A Dcxx98.c88 static bool lex_hex(const unsigned char *s, const unsigned char *e, unsigned long &u) in lex_hex() function
403 { if (!lex_hex(in.tok, in.cur, u)) return false; continue; } in lex_str()
544 { lex_hex(in.tok, in.cur, u); continue; } in lex_str()
628 { lex_hex(in.tok, in.cur, u); continue; } in lex_str()
2177 { if (!lex_hex(in.tok, in.cur, u)) return false; goto sfx; } in lex()
/dports/devel/gdb/gdb-11.1/gdb/
H A Drust-parse.c241 uint32_t lex_hex (int min, int max);
479 rust_parser::lex_hex (int min, int max) in lex_hex() function
527 result = lex_hex (2, 2); in lex_escape()
537 result = lex_hex (1, 6); in lex_escape()
H A DChangeLog-201913098 * rust-exp.y (struct rust_parser) <lex_hex, lex_escape,
13101 (rust_parser::lex_hex, lex_escape): Rename and update.