Home
last modified time | relevance | path

Searched refs:ConvertRegionUtf8ToUtf16 (Results 1 – 11 of 11) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/base/tests/
Dutf_helper_test.cpp557 HWTEST_F_L0(UtfHelperTest, ConvertRegionUtf8ToUtf16) in HWTEST_F_L0() argument
567 size_t outPos = ConvertRegionUtf8ToUtf16(utf8ValuePtr, utf16Out, sizeof(utf8Value), utf16Len); in HWTEST_F_L0()
572 outPos = ConvertRegionUtf8ToUtf16(utf8ValuePtr, utf16Out, sizeof(utf8Value) - 3, utf16Len); in HWTEST_F_L0()
841 size_t converted = ConvertRegionUtf8ToUtf16(reinterpret_cast<const uint8_t*>(utf8.data()), in HWTEST_F_L0()
856 size_t converted = ConvertRegionUtf8ToUtf16(reinterpret_cast<const uint8_t*>(utf8.data()), in HWTEST_F_L0()
871 size_t converted = ConvertRegionUtf8ToUtf16(reinterpret_cast<const uint8_t*>(utf8.data()), in HWTEST_F_L0()
886 size_t converted = ConvertRegionUtf8ToUtf16(reinterpret_cast<const uint8_t*>(utf8.data()), in HWTEST_F_L0()
901 size_t converted = ConvertRegionUtf8ToUtf16(reinterpret_cast<const uint8_t*>(utf8.data()), in HWTEST_F_L0()
916 size_t converted = ConvertRegionUtf8ToUtf16(reinterpret_cast<const uint8_t*>(utf8.data()), in HWTEST_F_L0()
931 size_t converted = ConvertRegionUtf8ToUtf16(reinterpret_cast<const uint8_t*>(utf8.data()), in HWTEST_F_L0()
[all …]
/arkcompiler/ets_runtime/ecmascript/base/
Dutf_helper.h127 size_t ConvertRegionUtf8ToUtf16(const uint8_t *utf8In, uint16_t *utf16Out, size_t utf8Len, size_t u…
Dutf_helper.cpp422 size_t ConvertRegionUtf8ToUtf16(const uint8_t *utf8In, uint16_t *utf16Out, size_t utf8Len, size_t u… in ConvertRegionUtf8ToUtf16() function
Dnumber_helper.cpp99 if (base::utf_helper::ConvertRegionUtf8ToUtf16(*ptr, &c, end - *ptr, 1) <= 0) { in GotoNonspace()
/arkcompiler/runtime_core/static_core/libpandabase/utils/
Dutf.h143 PANDA_PUBLIC_API size_t ConvertRegionUtf8ToUtf16(const uint8_t *utf8In, uint16_t *utf16Out, size_t …
Dutf.cpp574 size_t ConvertRegionUtf8ToUtf16(const uint8_t *utf8In, uint16_t *utf16Out, size_t utf8Len, size_t u… in ConvertRegionUtf8ToUtf16() function
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/helpers/
Dets_intrinsics_helpers.h166 if (utf::ConvertRegionUtf8ToUtf16(*ptr, &c, end - *ptr, 1, 0) <= 0) { in GotoNonspace()
/arkcompiler/ets_runtime/ecmascript/
Decma_string.h429 return base::utf_helper::ConvertRegionUtf8ToUtf16(data, buf, bufLength, bufLength); in CopyDataToUtf16()
431 return base::utf_helper::ConvertRegionUtf8ToUtf16(data, buf, length, bufLength); in CopyDataToUtf16()
520 return base::utf_helper::ConvertRegionUtf8ToUtf16(data, buf, length, maxLength); in CopyDataUtf16()
Decma_string-inl.h61 …base::utf_helper::ConvertRegionUtf8ToUtf16(utf8Data, string->GetDataUtf16Writable(), utf8Len, utf1… in CreateFromUtf8()
Decma_string.cpp823 …[[maybe_unused]] auto len = base::utf_helper::ConvertRegionUtf8ToUtf16(utf8Data, tmpBuffer.data(),… in ComputeHashcodeUtf8()
/arkcompiler/runtime_core/static_core/runtime/coretypes/
Dstring.cpp142 utf::ConvertRegionUtf8ToUtf16(utf8Data, tmpBuffer.data(), utf8Length, utf16Length, 0); in CreateFromUtf8()