Searched refs:hex_digit (Results 1 – 6 of 6) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-global.c | 402 ecma_char_t hex_digit = (ecma_char_t) (byte >> 4); in ecma_builtin_global_object_byte_to_hex() local 403 dest_p[1] = (lit_utf8_byte_t) ((hex_digit > 9) ? (hex_digit + ('A' - 10)) : (hex_digit + '0')); in ecma_builtin_global_object_byte_to_hex() 404 hex_digit = (lit_utf8_byte_t) (byte & 0xf); in ecma_builtin_global_object_byte_to_hex() 405 dest_p[2] = (lit_utf8_byte_t) ((hex_digit > 9) ? (hex_digit + ('A' - 10)) : (hex_digit + '0')); in ecma_builtin_global_object_byte_to_hex()
|
/third_party/gn/src/base/json/ |
D | json_parser.cc | 500 int hex_digit = 0; in ConsumeStringRaw() local 501 if (!HexStringToInt(*escape_sequence, &hex_digit) || in ConsumeStringRaw() 502 !IsValidCharacter(hex_digit)) { in ConsumeStringRaw() 507 string.Append(hex_digit); in ConsumeStringRaw()
|
/third_party/jerryscript/jerry-core/api/ |
D | jerry-snapshot.c | 1678 ecma_char_t hex_digit = (ecma_char_t) (byte >> 4); in jerry_get_literals_from_snapshot() local 1679 … *lit_buf_p++ = (lit_utf8_byte_t) ((hex_digit > 9) ? (hex_digit + ('A' - 10)) : (hex_digit + '0')); in jerry_get_literals_from_snapshot() 1680 hex_digit = (lit_utf8_byte_t) (byte & 0xf); in jerry_get_literals_from_snapshot() 1681 … *lit_buf_p++ = (lit_utf8_byte_t) ((hex_digit > 9) ? (hex_digit + ('A' - 10)) : (hex_digit + '0')); in jerry_get_literals_from_snapshot()
|
/third_party/rust/crates/nom/src/bytes/ |
D | tests.rs | 3 alpha1 as alpha, alphanumeric1 as alphanumeric, digit1 as digit, hex_digit1 as hex_digit, 323 recognize(hex_digit)(i)
|
/third_party/rust/crates/nom/doc/archive/ |
D | upgrading_to_nom_2.md | 73 `alpha`, `digit`, `alphanumeric`, `hex_digit`, `oct_digit`, `space`, `multispace`, `sized_buffer` w…
|
/third_party/rust/crates/nom/ |
D | CHANGELOG.md | 483 - `alpha*`, `digit*`, `hex_digit*`, `alphanumeric*` now recognize only ASCII characters 490 - character parsers that were aliases to their `*1` version: eol, alpha, digit, hex_digit, oct_digi… 1073 - @lwandrebeck for some documentation fixes and code fixes in `hex_digit`
|