Searched refs:UTF8_3B_FIRST (Results 1 - 5 of 5) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/base/ |
H A D | utf_helper.cpp | 137 if (data.at(0) == UTF8_3B_FIRST && data.at(1) < UTF8_3B_SECOND_MIN) { in IsValidUTF8() 178 auto ch0 = static_cast<uint8_t>(UTF8_3B_FIRST | static_cast<uint8_t>(d0 >> UtfOffset::TWELVE)); in ConvertUtf16ToUtf8() 204 auto ch0 = static_cast<uint8_t>(UTF8_3B_FIRST | static_cast<uint8_t>(d0 >> UtfOffset::TWELVE)); in ConvertUtf16ToUtf8()
|
H A D | utf_helper.h | 72 static constexpr uint8_t UTF8_3B_FIRST = 0xe0; member
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | utf.h | 73 constexpr uint8_t UTF8_3B_FIRST = 0xe0; member
|
H A D | utf.cpp | 420 auto ch0 = static_cast<uint8_t>(UTF8_3B_FIRST | static_cast<uint8_t>(d0 >> UtfOffset::TWELVE)); in ConvertUtf16ToUtf8() 443 auto ch0 = static_cast<uint8_t>(UTF8_3B_FIRST | static_cast<uint8_t>(d0 >> UtfOffset::TWELVE)); in ConvertUtf16ToUtf8()
|
/arkcompiler/ets_runtime/ecmascript/base/tests/ |
H A D | utf_helper_test.cpp | 201 Utf8Char utf8CharTemp = {3, {UTF8_3B_FIRST | static_cast<uint8_t>(0xD800 >> 12), in HWTEST_F_L0() 208 utf8CharTemp = {3, {UTF8_3B_FIRST | static_cast<uint8_t>(0xDFFF >> 12), in HWTEST_F_L0() 222 Utf8Char utf8CharTemp = {3, {UTF8_3B_FIRST | static_cast<uint8_t>(0x800 >> 12), in HWTEST_F_L0() 229 utf8CharTemp = {3, {UTF8_3B_FIRST | static_cast<uint8_t>(0xD7FF>>12), in HWTEST_F_L0() 236 utf8CharTemp = {3, {UTF8_3B_FIRST | static_cast<uint8_t>(0xE000 >> 12), in HWTEST_F_L0() 243 utf8CharTemp = {3, {UTF8_3B_FIRST | static_cast<uint8_t>(0xFFFF >> 12), in HWTEST_F_L0()
|
Completed in 11 milliseconds