Home
last modified time | relevance | path

Searched defs:codePoint (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/runtime_core/static_core/libpandabase/utils/
Dutf.cpp81 …uint32_t codePoint = ((d0 & MASK_4BIT) << (DATA_WIDTH * CONST_3)) | ((d1 & MASK_6BIT) << (DATA_WID… in ConvertMUtf8ToUtf16Pair() local
94 uint32_t codePoint = d0 - DECODE_LEAD_LOW; in CombineTwoU16() local
453 uint32_t codePoint = CombineTwoU16(d0, d1); in ConvertUtf16ToUtf8() local
553 …uint32_t codePoint = ((d0 & MASK_4BIT) << UtfOffset::EIGHTEEN) | ((d1 & MASK_6BIT) << UtfOffset::T… in ConvertUtf8ToUtf16Pair() local
/arkcompiler/ets_runtime/ecmascript/base/tests/
Dutf_helper_test.cpp61 …uint32_t codePoint = static_cast<uint32_t>(((leadSur - 0xD800U) << 10)|(trailSur - 0xDc00U)) + 0x1… in HWTEST_F_L0() local
100 uint32_t codePoint = utf_helper::UTF16Decode(lead, trail); in HWTEST_F_L0() local
281 uint32_t codePoint = CombineTwoU16(utf16Data0, utf16Data1); in HWTEST_F_L0() local
295 uint32_t codePoint = CombineTwoU16(utf16Data0, utf16Data1); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/src/
Dnamemangler.cpp429 uint32_t codePoint = 0; in UTF16ToUTF8() local
495 uint32_t codePoint = 0; in GetCodePoint() local
526 uint32_t codePoint = GetCodePoint(str8, i); in UTF8ToUTF16() local
/arkcompiler/runtime_core/libpandabase/utils/
Dutf.cpp100 uint32_t codePoint = d0 - HI_SURROGATE_MIN; in CombineTwoU16() local
136 uint32_t codePoint = CombineTwoU16(d0, d1); in ConvertUtf16ToMUtf8() local
/arkcompiler/ets_runtime/ecmascript/base/
Dutf_helper.h108 uint32_t codePoint = d0 - utf::HI_SURROGATE_MIN; in CombineTwoU16() local
Dutf_helper.cpp204 uint32_t codePoint = CombineTwoU16(d0, d1); in ConvertUtf16ToUtf8() local
324 …uint32_t codePoint = ((d0 & utf::MASK_4BIT) << UtfOffset::EIGHTEEN) | ((d1 & utf::MASK_6BIT) << Ut… in ConvertUtf8ToUtf16Pair() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
Dstd_core_String.cpp381 ets_char StdCoreStringCodePointToChar(ets_int codePoint) in StdCoreStringCodePointToChar()