Searched refs:lit_char_hex_lookup (Results 1 – 5 of 5) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-global.c | 226 uint32_t hex_value = lit_char_hex_lookup (input_char_p + 1, input_end_p, 2); in ecma_builtin_global_object_decode_uri_helper() 279 uint32_t hex_value = lit_char_hex_lookup (input_char_p + 1, input_end_p, 2); in ecma_builtin_global_object_decode_uri_helper() 338 hex_value = lit_char_hex_lookup (input_char_p + 1, input_end_p, 2); in ecma_builtin_global_object_decode_uri_helper()
|
D | ecma-builtin-json.c | 177 …uint32_t hex_value = lit_char_hex_lookup (current_p + 1, end_p, ECMA_JSON_HEX_ESCAPE_SEQUENCE_LENG… in ecma_builtin_json_parse_string()
|
/third_party/jerryscript/jerry-core/lit/ |
D | lit-char-helpers.h | 220 uint32_t lit_char_hex_lookup (const lit_utf8_byte_t *buf_p, const lit_utf8_byte_t *const buf_end_p,…
|
D | lit-char-helpers.c | 439 lit_char_hex_lookup (const lit_utf8_byte_t *buf_p, /**< buffer */ in lit_char_hex_lookup() function
|
/third_party/jerryscript/jerry-core/parser/regexp/ |
D | re-parser.c | 565 uint32_t hex_value = lit_char_hex_lookup (re_ctx_p->input_curr_p, re_ctx_p->input_end_p, 2); in re_parse_char_escape() 586 uint32_t hex_value = lit_char_hex_lookup (re_ctx_p->input_curr_p, re_ctx_p->input_end_p, 4); in re_parse_char_escape() 599 hex_value = lit_char_hex_lookup (re_ctx_p->input_curr_p + 2, re_ctx_p->input_end_p, 4); in re_parse_char_escape()
|