Home
last modified time | relevance | path

Searched refs:arrayElement (Results 1 – 9 of 9) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/mem/gc/static/
Dgc_marker_static-inl.h88 auto *arrayElement = arrayObject->Get<ObjectHeader *>(i); in HandleArrayClass() local
89 if (arrayElement == nullptr) { in HandleArrayClass()
93 auto arrayElementCls = arrayElement->ClassAddr<Class>(); in HandleArrayClass()
95 << " object's class is nullptr: " << arrayElement << " from array: " << arrayObject; in HandleArrayClass()
98 if (AsMarker()->MarkIfNotMarked(arrayElement)) { in HandleArrayClass()
99 objectsStack->PushToStack(arrayObject, arrayElement); in HandleArrayClass()
/arkcompiler/runtime_core/static_core/runtime/mem/
Dobject_helpers-inl.h125 auto *arrayElement = array->Get<ObjectHeader *>(i); in TraverseArray() local
126 if (arrayElement != nullptr) { in TraverseArray()
127 [[maybe_unused]] bool res = handler(array, arrayElement, offset, false); in TraverseArray()
239 TaggedValue arrayElement(array->Get<TaggedType, false, true>(i)); in TraverseArray()
240 if (arrayElement.IsHeapObject()) { in TraverseArray()
241 [[maybe_unused]] bool res = handler(array, arrayElement.GetHeapObject(), offset, false); in TraverseArray()
/arkcompiler/runtime_core/static_core/runtime/mem/gc/dynamic/
Dgc_marker_dynamic-inl.h92 TaggedValue arrayElement(arrayObject->Get<TaggedType, true, true>(i)); in HandleArrayClass()
93 if (!arrayElement.IsHeapObject()) { in HandleArrayClass()
96 ObjectHeader *elementObject = arrayElement.GetHeapObject(); in HandleArrayClass()
/arkcompiler/runtime_core/static_core/runtime/tooling/
Ddefault_inspector_extension.cpp204 TaggedValue arrayElement(array.Get<TaggedType, false, true>(i)); in EnumerateProperties() local
205 handler(std::to_string(i), TypedValue::Tagged(arrayElement), true, false, false); in EnumerateProperties()
/arkcompiler/ets_runtime/test/fuzztest/containersvectorcommon_fuzzer/
Dcontainersvectorcommon_fuzzer.h842 … JSHandle<TaggedArray> arrayElement = factory->NewTaggedArray(ELEMENT_NUMS, JSTaggedValue::Hole()); in ContainersVectorCopyToArrayFuzzTest() local
843 array->SetElements(thread, arrayElement); in ContainersVectorCopyToArrayFuzzTest()
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/
Djson.sts809 private writeObjectsArrayElement(arrayElement: NullishType, elementIndex: int): void {
812 …cedArrayElement = this.useReplacer ? this.replacer!("" + elementIndex, arrayElement) : arrayElement
DAtomics.sts990 * (index = typedArray.byteOffset + offset * sizeof(arrayElement))
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_vector_test.cpp602 … JSHandle<TaggedArray> arrayElement = factory->NewTaggedArray(ELEMENT_NUMS, JSTaggedValue::Hole()); in HWTEST_F_L0() local
603 array->SetElements(thread, arrayElement); in HWTEST_F_L0()
/arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/
D17_experimental.rst272 'new' arrayElementType dimensionExpression+ (arrayElement)?
284 arrayElement:
316 If ``arrayElement`` is provided, then the type of the ``expression`` can be