Home
last modified time | relevance | path

Searched refs:utf16_length (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/runtime_core/libpandafile/
Dfile.h91 StringData(uint32_t len, const uint8_t *d) : utf16_length(len), is_ascii(false), data(d) {} in StringData()
93 uint32_t utf16_length; // NOLINT(misc-non-private-member-variables-in-classes) member
450 if (string_data1.utf16_length != string_data2.utf16_length) {
464 if (string_data1.utf16_length == string_data2.utf16_length) {
468 return string_data1.utf16_length < string_data2.utf16_length;
Dfile-inl.h31 str_data.utf16_length = tag_utf16_length >> 1U; in GetStringData()
Dclass_data_accessor.cpp28 name_.utf16_length = helpers::ReadULeb128(&sp); in ClassDataAccessor()
Dfile_items.cpp207 …Item(container), str_(reinterpret_cast<const char *>(data.data)), utf16_length_(data.utf16_length) in StringItem()
/arkcompiler/runtime_core/docs/
Dfile_format.md92 | `utf16_length` | `uleb128` | `len << 1 \| is_ascii` where `len` is the length of the stri…
/arkcompiler/ets_runtime/ecmascript/
Dobject_factory.cpp2591 uint32_t utf16Len = sd.utf16_length; in GetRawStringFromStringTable()