Home
last modified time | relevance | path

Searched refs:LIT_CHAR_LOWERCASE_A (Results 1 – 9 of 9) sorted by relevance

/third_party/jerryscript/tests/unit-core/
Dtest-lit-char-helpers.c42 if (byte >= LIT_CHAR_LOWERCASE_A && byte <= LIT_CHAR_LOWERCASE_F) in lexer_hex_to_character()
44 result += byte - (LIT_CHAR_LOWERCASE_A - 10); in lexer_hex_to_character()
/third_party/jerryscript/jerry-core/lit/
Dlit-char-helpers.h144 #define LIT_CHAR_LOWERCASE_A ((ecma_char_t) 'a') macro
191 #define LIT_CHAR_ASCII_LOWERCASE_LETTERS_BEGIN LIT_CHAR_LOWERCASE_A /* lowercase letters range…
198 #define LIT_CHAR_ASCII_LOWERCASE_LETTERS_HEX_BEGIN LIT_CHAR_LOWERCASE_A /* lowercase letters for
Dlit-char-helpers.c215 return ((LEXER_TO_ASCII_LOWERCASE (code_point) >= LIT_CHAR_LOWERCASE_A in lit_code_point_is_identifier_start()
245 return ((LEXER_TO_ASCII_LOWERCASE (code_point) >= LIT_CHAR_LOWERCASE_A in lit_code_point_is_identifier_part()
712 output_buffer_p[0] = (ecma_char_t) (character + (LIT_CHAR_LOWERCASE_A - LIT_CHAR_UPPERCASE_A)); in lit_char_to_lower_case()
770 if (character >= LIT_CHAR_LOWERCASE_A && character <= LIT_CHAR_LOWERCASE_Z) in lit_char_to_upper_case()
772 output_buffer_p[0] = (ecma_char_t) (character - (LIT_CHAR_LOWERCASE_A - LIT_CHAR_UPPERCASE_A)); in lit_char_to_upper_case()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-number.c821 if ((current_char >= LIT_CHAR_LOWERCASE_A && current_char <= LIT_CHAR_LOWERCASE_Z)) in ecma_number_parse_int()
823 current_number = current_char - LIT_CHAR_LOWERCASE_A + 10; in ecma_number_parse_int()
863 if ((current_char >= LIT_CHAR_LOWERCASE_A && current_char <= LIT_CHAR_LOWERCASE_Z)) in ecma_number_parse_int()
865 current_number = (ecma_number_t) current_char - LIT_CHAR_LOWERCASE_A + 10; in ecma_number_parse_int()
Decma-helpers-conversion.c335 else if (*iter_p >= LIT_CHAR_LOWERCASE_A in ecma_utf8_string_to_number_by_radix()
338 digit_value = 10 + (*iter_p - LIT_CHAR_LOWERCASE_A); in ecma_utf8_string_to_number_by_radix()
/third_party/jerryscript/jerry-core/parser/js/
Djs-lexer.c80 if (byte >= LIT_CHAR_LOWERCASE_A && byte <= LIT_CHAR_LOWERCASE_F) in lexer_hex_to_code_point()
82 result += byte - (LIT_CHAR_LOWERCASE_A - 10); in lexer_hex_to_code_point()
127 if (byte >= LIT_CHAR_LOWERCASE_A && byte <= LIT_CHAR_LOWERCASE_F) in lexer_hex_in_braces_to_code_point()
129 result += byte - (LIT_CHAR_LOWERCASE_A - 10); in lexer_hex_in_braces_to_code_point()
183 JERRY_ASSERT ((byte >= LIT_CHAR_LOWERCASE_A && byte <= LIT_CHAR_LOWERCASE_F) in lexer_unchecked_hex_to_character()
186 result += LEXER_TO_ASCII_LOWERCASE (byte) - (LIT_CHAR_LOWERCASE_A - 10); in lexer_unchecked_hex_to_character()
Djs-scanner.c1542 if (lexer_check_next_character (context_p, LIT_CHAR_LOWERCASE_A)) in scanner_scan_statement()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-json.c843 : (LIT_CHAR_LOWERCASE_A - 10)))); in ecma_builtin_json_quote()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.c408 if (ch >= LIT_CHAR_LOWERCASE_A && ch <= LIT_CHAR_LOWERCASE_Z) in ecma_regexp_canonicalize_char()
410 return (ecma_char_t) (ch - (LIT_CHAR_LOWERCASE_A - LIT_CHAR_UPPERCASE_A)); in ecma_regexp_canonicalize_char()