Searched refs:utf16_length (Results 1 - 8 of 8) sorted by relevance
/arkcompiler/runtime_core/libpandafile/ |
H A D | file.h | 94 StringData(uint32_t len, const uint8_t *d) : utf16_length(len), is_ascii(false), data(d) {} in StringData() 96 uint32_t utf16_length; // NOLINT(misc-non-private-member-variables-in-classes) member 475 if (string_data1.utf16_length != string_data2.utf16_length) { in operator ==() 489 if (string_data1.utf16_length == string_data2.utf16_length) { in operator <() 493 return string_data1.utf16_length < string_data2.utf16_length; in operator <()
|
H A D | file-inl.h | 31 str_data.utf16_length = tag_utf16_length >> 1U; in GetStringData()
|
H A D | class_data_accessor.cpp | 28 name_.utf16_length = helpers::ReadULeb128(&sp); in ClassDataAccessor()
|
H A D | file_items.cpp | 207 : IndexedItem(container), str_(reinterpret_cast<const char *>(data.data)), utf16_length_(data.utf16_length) in StringItem()
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/ |
H A D | js_pandafile.cpp | 403 return {std::string_view(utf::Mutf8AsCString(sd.data), sd.utf16_length), sd.is_ascii}; in GetMethodName() 409 return {std::string_view(utf::Mutf8AsCString(sd.data), sd.utf16_length), sd.is_ascii}; in GetMethodName() 416 std::string_view strView(utf::Mutf8AsCString(sd.data), sd.utf16_length); in GetCpuProfilerMethodName()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | ecma_string_table.cpp | 570 uint32_t strLen = sd.utf16_length; in RelocateConstantData()
|
H A D | object_factory.cpp | 3258 uint32_t utf16Len = sd.utf16_length; in GetRawStringFromStringTable() 3278 uint32_t utf16Len = sd.utf16_length; in GetRawStringFromStringTableWithoutJSHandle()
|
/arkcompiler/runtime_core/verifier/ |
H A D | verifier.cpp | 454 if (string_data.utf16_length != utf16_desc.length()) { in VerifyStringIdInLiteralArray()
|
Completed in 20 milliseconds