Home
last modified time | relevance | path

Searched refs:is_ascii (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/runtime_core/libpandafile/
Dfile-inl.h32 str_data.is_ascii = static_cast<bool>(tag_utf16_length & 1U); in GetStringData()
Dfile.h91 StringData(uint32_t len, const uint8_t *d) : utf16_length(len), is_ascii(false), data(d) {} in StringData()
94 bool is_ascii; // NOLINT(misc-non-private-member-variables-in-classes) member
/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.cpp2596 bool canBeCompressed = sd.is_ascii; in GetRawStringFromStringTable()