Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/lit/
Dlit-char-helpers.h183 #define LIT_CHAR_9 ((ecma_char_t) '9') macro
206 #define LIT_CHAR_ASCII_DIGITS_END LIT_CHAR_9
Dlit-char-helpers.c247 || (code_point >= LIT_CHAR_0 && code_point <= LIT_CHAR_9) in lit_code_point_is_identifier_part()
/third_party/jerryscript/jerry-core/parser/js/
Djs-lexer.c73 if (byte >= LIT_CHAR_0 && byte <= LIT_CHAR_9) in lexer_hex_to_code_point()
120 if (byte >= LIT_CHAR_0 && byte <= LIT_CHAR_9) in lexer_hex_in_braces_to_code_point()
177 if (byte >= LIT_CHAR_0 && byte <= LIT_CHAR_9) in lexer_unchecked_hex_to_character()
1014 && (*(source_p + 1) < LIT_CHAR_0 || *(source_p + 1) > LIT_CHAR_9)) in lexer_parse_string()
1255 && (*source_p[0] == LIT_CHAR_8 || *source_p[0] == LIT_CHAR_9)) in lexer_parse_octal_number()
1330 && source_p[1] <= LIT_CHAR_9) in lexer_parse_number()
1366 && source_p[0] <= LIT_CHAR_9) in lexer_parse_number()
1382 && source_p[0] <= LIT_CHAR_9) in lexer_parse_number()
1401 || source_p[0] > LIT_CHAR_9) in lexer_parse_number()
1412 && source_p[0] <= LIT_CHAR_9); in lexer_parse_number()
[all …]
/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-conversion.c331 && *iter_p <= LIT_CHAR_9) in ecma_utf8_string_to_number_by_radix()
447 && *str_p <= LIT_CHAR_9) in ecma_utf8_string_to_number()
489 && *str_p <= LIT_CHAR_9) in ecma_utf8_string_to_number()
549 && *str_p <= LIT_CHAR_9) in ecma_utf8_string_to_number()
Decma-helpers-string.c68 JERRY_ASSERT (string_size > 0 && *string_p >= LIT_CHAR_0 && *string_p <= LIT_CHAR_9); in ecma_string_to_array_index()
91 if (*string_p > LIT_CHAR_9 || *string_p < LIT_CHAR_0) in ecma_string_to_array_index()
108 if (*string_p > LIT_CHAR_9 in ecma_string_to_array_index()
310 if (*string_p >= LIT_CHAR_0 && *string_p <= LIT_CHAR_9) in ecma_find_special_string()
/third_party/jerryscript/tests/unit-core/
Dtest-lit-char-helpers.c35 if (byte >= LIT_CHAR_0 && byte <= LIT_CHAR_9) in lexer_hex_to_character()
/third_party/jerryscript/jerry-core/parser/regexp/
Dre-parser.c716 if (*re_ctx_p->input_curr_p > LIT_CHAR_0 && *re_ctx_p->input_curr_p <= LIT_CHAR_9) in re_parse_next_token()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.c475 return (cp >= LIT_CHAR_0 && cp <= LIT_CHAR_9); in ecma_regexp_check_class_escape()
479 return (cp < LIT_CHAR_0 || cp > LIT_CHAR_9); in ecma_regexp_check_class_escape()