Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/lit/
Dlit-char-helpers.c320 lit_char_hex_to_int (ecma_char_t c) /**< code unit, corresponding to in lit_char_hex_to_int() function
461 value += lit_char_hex_to_int (ch); in lit_char_hex_lookup()
Dlit-char-helpers.h216 uint32_t lit_char_hex_to_int (ecma_char_t c);
/third_party/jerryscript/jerry-core/parser/regexp/
Dre-parser.c619 lit_code_point_t cp = lit_char_hex_to_int (re_ctx_p->input_curr_p[1]); in re_parse_char_escape()
624 cp = cp * 16 + lit_char_hex_to_int (*re_ctx_p->input_curr_p++); in re_parse_char_escape()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-global.c739 hex_digits = (ecma_char_t) (hex_digits * 16 + (ecma_char_t) lit_char_hex_to_int (chr)); in ecma_builtin_global_object_unescape()