Home
last modified time | relevance | path

Searched refs:LIT_CHAR_UPPERCASE_A (Results 1 – 6 of 6) sorted by relevance

/third_party/jerryscript/jerry-core/lit/
Dlit-char-helpers.h114 #define LIT_CHAR_UPPERCASE_A ((ecma_char_t) 'A') macro
188 #define LIT_CHAR_ASCII_UPPERCASE_LETTERS_BEGIN LIT_CHAR_UPPERCASE_A /* uppercase letters range…
194 #define LIT_CHAR_ASCII_UPPERCASE_LETTERS_HEX_BEGIN LIT_CHAR_UPPERCASE_A /* uppercase letters for
Dlit-char-helpers.c710 if (character >= LIT_CHAR_UPPERCASE_A && character <= LIT_CHAR_UPPERCASE_Z) in lit_char_to_lower_case()
712 output_buffer_p[0] = (ecma_char_t) (character + (LIT_CHAR_LOWERCASE_A - LIT_CHAR_UPPERCASE_A)); in lit_char_to_lower_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.c825 else if ((current_char >= LIT_CHAR_UPPERCASE_A && current_char <= LIT_CHAR_UPPERCASE_Z)) in ecma_number_parse_int()
827 current_number = current_char - LIT_CHAR_UPPERCASE_A + 10; in ecma_number_parse_int()
867 else if ((current_char >= LIT_CHAR_UPPERCASE_A && current_char <= LIT_CHAR_UPPERCASE_Z)) in ecma_number_parse_int()
869 current_number = (ecma_number_t) current_char - LIT_CHAR_UPPERCASE_A + 10; in ecma_number_parse_int()
Decma-helpers-conversion.c340 else if (*iter_p >= LIT_CHAR_UPPERCASE_A in ecma_utf8_string_to_number_by_radix()
343 digit_value = 10 + (*iter_p - LIT_CHAR_UPPERCASE_A); in ecma_utf8_string_to_number_by_radix()
/third_party/jerryscript/jerry-core/parser/js/
Djs-lexer.c184 || (byte >= LIT_CHAR_UPPERCASE_A && byte <= LIT_CHAR_UPPERCASE_F)); in lexer_unchecked_hex_to_character()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.c410 return (ecma_char_t) (ch - (LIT_CHAR_LOWERCASE_A - LIT_CHAR_UPPERCASE_A)); in ecma_regexp_canonicalize_char()