Home
last modified time | relevance | path

Searched refs:UTF8_1B_MAX (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/base/
Dutf_helper.cpp62 if (codepoint <= UTF8_1B_MAX) { in UTF8Length()
150 if (d0 <= UTF8_1B_MAX) { in ConvertUtf16ToUtf8()
195 … } else if (utf16[i] <= UTF8_1B_MAX) { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Utf16ToUtf8Size()
Dutf_helper.h41 static constexpr uint8_t UTF8_1B_MAX = 0x7f; variable
/arkcompiler/ets_runtime/ecmascript/base/tests/
Dutf_helper_test.cpp413 uint8_t utf8Value2[1] = {UTF8_1B_MAX}; in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_string_stub_builder.cpp374 return Int32LessThan(Int32Sub(data, Int32(1)), Int32(base::utf_helper::UTF8_1B_MAX)); in IsASCIICharacter()
/arkcompiler/ets_runtime/ecmascript/
Decma_string.h493 return data - 1U < base::utf_helper::UTF8_1B_MAX; in IsASCIICharacter()