Home
last modified time | relevance | path

Searched refs:EtsBooleanArray (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/
Dets_shared_memory-inl.h39 return reinterpret_cast<EtsBooleanArray *>(obj)->Get(index); in GetElement()
66 reinterpret_cast<EtsBooleanArray *>(obj)->Set(index, element); in SetElement()
Dets_type_comptime_traits.h79 using Type = EtsBooleanArray;
Dets_array.h256 using EtsBooleanArray = EtsPrimitiveArray<EtsBoolean, EtsClassRoot::BOOLEAN_ARRAY>; variable
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
Dstd_core_gc.cpp318 extern "C" EtsBooleanArray *StdGCAllocatePinnedBooleanArray(EtsLong length) in StdGCAllocatePinnedBooleanArray()
320 return StdGCAllocatePinnedPrimitiveTypeArray<EtsBooleanArray>(length); in StdGCAllocatePinnedBooleanArray()
Dstd_core_Value.cpp341 SetElement<EtsBooleanArray>(obj, i, val); in ValueAPISetElementBoolean()
405 return GetElement<EtsBooleanArray>(obj, i); in ValueAPIGetElementBoolean()
Dstd_core_Type.cpp565 return EtsBooleanArray::Create(len)->AsObject(); in TypeAPIMakeArrayInstance()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/call/
Darg_convertors.h192 return DoPackRestParameters<EtsBooleanArray>(coro, ctx, protoReader, jsargv); in PackRestParameters()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/napi/
Dets_napi_native_interface.cpp2147 return NewPrimitiveTypeArray<ets_booleanArray, EtsBooleanArray>(env, length); in NewBooleanArray()