Searched refs:arrayElement (Results 1 – 9 of 9) sorted by relevance
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/static/ |
| D | gc_marker_static-inl.h | 88 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/ |
| D | object_helpers-inl.h | 125 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/ |
| D | gc_marker_dynamic-inl.h | 92 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/ |
| D | default_inspector_extension.cpp | 204 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/ |
| D | containersvectorcommon_fuzzer.h | 842 … 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/ |
| D | json.sts | 809 private writeObjectsArrayElement(arrayElement: NullishType, elementIndex: int): void { 812 …cedArrayElement = this.useReplacer ? this.replacer!("" + elementIndex, arrayElement) : arrayElement
|
| D | Atomics.sts | 990 * (index = typedArray.byteOffset + offset * sizeof(arrayElement))
|
| /arkcompiler/ets_runtime/ecmascript/containers/tests/ |
| D | containers_vector_test.cpp | 602 … 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/ |
| D | 17_experimental.rst | 272 'new' arrayElementType dimensionExpression+ (arrayElement)? 284 arrayElement: 316 If ``arrayElement`` is provided, then the type of the ``expression`` can be
|