Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/static_core/plugins/ets/sdk/native/api/
Dani_textencoder_helper.cpp54 uint32_t codePoint = ((c1 & LOWER_3_BITS_MASK) << (3 * UTF8_VALID_BITS)) | in Utf8ToUtf16LEToData() local
107 uint32_t codePoint = ((c1 & LOWER_4_BITS_MASK) << (2 * UTF8_VALID_BITS)) | in Utf8ToUtf16LEByteCheck() local
120 … uint32_t codePoint = ((c1 & LOWER_5_BITS_MASK) << UTF8_VALID_BITS) | (c2 & LOWER_6_BITS_MASK); in Utf8ToUtf16LEByteCheck() local
/arkcompiler/ets_runtime/common_components/base/
Dutf_helper.cpp203 uint32_t codePoint = CombineTwoU16(d0, d1); in ConvertUtf16ToUtf8() local
398 …uint32_t codePoint = ((d0 & MASK_4BIT) << UtfOffset::EIGHTEEN) | ((d1 & MASK_6BIT) << UtfOffset::T… in ConvertUtf8ToUtf16Pair() local
445 … uint32_t codePoint = ((src & LOW_3BITS) << OFFSET_18POS) | ((c2 & LOW_6BITS) << OFFSET_12POS) | in Utf8ToUtf16Size() local
491 … uint32_t codePoint = ((src & LOW_3BITS) << OFFSET_18POS) | ((c2 & LOW_6BITS) << OFFSET_12POS) | in ConvertRegionUtf8ToUtf16() local
Dutf_helper.h173 uint32_t codePoint = d0 - HI_SURROGATE_MIN; in CombineTwoU16() local
/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
451 uint32_t codePoint = CombineTwoU16(d0, d1); in ConvertUtf16ToUtf8() local
554 …uint32_t codePoint = ((d0 & MASK_4BIT) << UtfOffset::EIGHTEEN) | ((d1 & MASK_6BIT) << UtfOffset::T… in ConvertUtf8ToUtf16Pair() local
/arkcompiler/runtime_core/libpandabase/utils/
Dutf.cpp95 uint32_t codePoint = d0 - HI_SURROGATE_MIN; in CombineTwoU16() local
131 uint32_t codePoint = CombineTwoU16(d0, d1); in ConvertUtf16ToMUtf8() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/src/
Dnamemangler.cpp189 uint32_t codePoint = 0; in UTF16ToUTF8() local
/arkcompiler/ets_runtime/ecmascript/base/tests/
Dutf_helper_test.cpp37 …uint32_t codePoint = static_cast<uint32_t>(((leadSur - 0xD800U) << 10)|(trailSur - 0xDc00U)) + 0x1… in HWTEST_F_L0() local
76 uint32_t codePoint = common::utf_helper::UTF16Decode(lead, trail); in HWTEST_F_L0() local
257 uint32_t codePoint = CombineTwoU16(utf16Data0, utf16Data1); in HWTEST_F_L0() local
271 uint32_t codePoint = CombineTwoU16(utf16Data0, utf16Data1); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/common_components/objects/
Dbase_string.cpp178 … uint32_t codePoint = ((src & LOW_3BITS) << OFFSET_18POS) | ((c2 & LOW_6BITS) << OFFSET_12POS) | in IsUtf8EqualsUtf16() local
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_buffer.cpp309 uint32_t codePoint = ((c1 & LOWER_3_BITS_MASK) << (3 * UTF8_VALID_BITS)) | in Utf8ToUtf16BEToData() local
351 uint32_t codePoint = ((c1 & LOWER_4_BITS_MASK) << (2 * UTF8_VALID_BITS)) | in Utf8ToUtf16BE() local
361 … uint32_t codePoint = ((c1 & LOWER_5_BITS_MASK) << UTF8_VALID_BITS) | (c2 & LOWER_6_BITS_MASK); in Utf8ToUtf16BE() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
Dstd_core_String.cpp379 ets_int StdCoreStringCodePointToChar(ets_int codePoint) in StdCoreStringCodePointToChar()
/arkcompiler/ets_frontend/ets2panda/linter/src/lib/utils/
DTsUtils.ts2879 const codePoint = str.codePointAt(offset); constant