Home
last modified time | relevance | path

Searched refs:chararray (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/
Dets_string.h104 … static EtsString *CreateNewStringFromChars(uint32_t offset, uint32_t length, EtsArray *chararray) in CreateNewStringFromChars() argument
109 …offset, length, reinterpret_cast<coretypes::Array *>(chararray), ctx, Runtime::GetCurrent()->GetPa… in CreateNewStringFromChars()
/arkcompiler/runtime_core/static_core/runtime/coretypes/
Dstring.cpp191 String *String::CreateNewStringFromChars(uint32_t offset, uint32_t length, Array *chararray, const … in CreateNewStringFromChars() argument
194 ASSERT(chararray != nullptr); in CreateNewStringFromChars()
198 VMHandle<Array> arrayHandle(thread, chararray); in CreateNewStringFromChars()
206 …const uint16_t *src = reinterpret_cast<uint16_t *>(ToUintPtr<uint32_t>(chararray->GetData()) + (of… in CreateNewStringFromChars()
/arkcompiler/runtime_core/static_core/runtime/include/coretypes/
Dstring.h71 …LIC_API static String *CreateNewStringFromChars(uint32_t offset, uint32_t length, Array *chararray,