| /arkcompiler/ets_runtime/ecmascript/ |
| D | weak_vector.cpp | 55 …JSHandle<TaggedArray> newVec = factory->CopyArray(JSHandle<TaggedArray>(old), VectorToArrayIndex(o… in Grow() 126 …JSHandle<TaggedArray> newVec = factory->CopyArray(JSHandle<TaggedArray>(vec), oldLength, newLength… in Copy()
|
| D | vtable.cpp | 103 …JSHandle<TaggedArray> copyVtable = factory->CopyArray(JSHandle<TaggedArray>(vtable), length, lengt… in Copy()
|
| D | tagged_array-inl.h | 156 JSHandle<TaggedArray> newArray = factory->CopyArray(array, oldLength, capa); in SetCapacity() 166 factory->CopyArray(array, oldLength, capa, JSTaggedValue::Hole(), MemSpaceType::OLD_SPACE); in SetCapacityInOldSpace()
|
| D | js_array.cpp | 485 auto newArray = factory->CopyArray(arr, arr->GetLength(), arr->GetLength(), in CheckAndCopyArray() 491 auto newProps = factory->CopyArray(prop, prop->GetLength(), prop->GetLength(), in CheckAndCopyArray()
|
| D | tagged_list.h | 44 void CopyArray(const JSThread *thread, JSHandle<Derived> &taggedList);
|
| D | js_typed_array.cpp | 326 return factory->CopyArray(nameList, length, copyLength); in OwnPropertyKeys() 362 return factory->CopyArray(nameList, length, copyLength); in OwnEnumPropertyKeys()
|
| D | tagged_list.cpp | 50 void TaggedList<Derived>::CopyArray(const JSThread *thread, JSHandle<Derived> &taggedList) in CopyArray() function in panda::ecmascript::TaggedList 75 taggedList->CopyArray(thread, list); in GrowCapacity()
|
| D | js_object.cpp | 81 JSHandle<TaggedArray> newElements = factory->CopyArray(oldElements, oldLength, newCapacity); in GrowElementsCapacity() 1562 keys = factory->CopyArray(keyArray, copyLengthOfKeys, copyLengthOfKeys); in EnumerableOwnNames() 1564 keys = factory->CopyArray(elementArray, copyLengthOfElements, copyLengthOfElements); in EnumerableOwnNames() 1593 return factory->CopyArray(names, length, copyLength); in EnumerableOwnNames()
|
| D | object_fast_operator-inl.h | 533 array.Update(factory->CopyArray(array, length, capacity).GetTaggedValue()); in AddPropertyByName()
|
| D | js_proxy.cpp | 828 … thread->GetEcmaVM()->GetFactory()->CopyArray(trapRes, trapRes->GetLength(), trapRes->GetLength()); in OwnPropertyKeys()
|
| D | object_factory.h | 365 …JSHandle<TaggedArray> CopyArray(const JSHandle<TaggedArray> &old, uint32_t oldLength, uint32_t new…
|
| D | object_factory.cpp | 473 …auto newElements = CopyArray(elements, elementsLength, elementsLength, JSTaggedValue::Hole(), type… in CloneArrayLiteral() 496 …auto newProperties = CopyArray(properties, propertiesLength, propertiesLength, JSTaggedValue::Hole… in CloneArrayLiteral() 2392 JSHandle<TaggedArray> ObjectFactory::CopyArray(const JSHandle<TaggedArray> &old, uint32_t oldLength… in CopyArray() function in panda::ecmascript::ObjectFactory 2456 return JSHandle<LayoutInfo>(CopyArray(JSHandle<TaggedArray>::Cast(old), newLength, newLength)); in CopyLayoutInfo()
|
| /arkcompiler/ets_runtime/ecmascript/js_api/ |
| D | js_api_lightweightset.cpp | 49 hashArray = thread->GetEcmaVM()->GetFactory()->CopyArray(hashArray, capacity, newCapacity); in Add() 50 … valueArray = thread->GetEcmaVM()->GetFactory()->CopyArray(valueArray, capacity, newCapacity); in Add() 164 hashArray = thread->GetEcmaVM()->GetFactory()->CopyArray(hashArray, capacity, newCapacity); in SizeCopy() 165 valueArray = thread->GetEcmaVM()->GetFactory()->CopyArray(valueArray, capacity, newCapacity); in SizeCopy()
|
| D | js_api_stack.cpp | 92 thread->GetEcmaVM()->GetFactory()->CopyArray(oldElements, oldLength, newCapacity); in GrowCapacity()
|
| D | js_api_plain_array.cpp | 49 thread->GetEcmaVM()->GetFactory()->CopyArray(keyArray, capacity, newCapacity); in Add() 51 thread->GetEcmaVM()->GetFactory()->CopyArray(valueArray, capacity, newCapacity); in Add()
|
| D | js_api_vector.cpp | 90 thread->GetEcmaVM()->GetFactory()->CopyArray(elementData, oldCapacity, tempCapacity); in IncreaseCapacityTo() 366 thread->GetEcmaVM()->GetFactory()->CopyArray(elementData, oldCapacity, newCapacity); in GrowCapacity()
|
| D | js_api_queue.cpp | 55 … newElements = thread->GetEcmaVM()->GetFactory()->CopyArray(oldElements, oldLength, newCapacity); in GrowCapacity()
|
| D | js_api_arraylist.cpp | 370 thread->GetEcmaVM()->GetFactory()->CopyArray(oldElements, oldCapacity, newCapacity); in GrowCapacity()
|
| D | js_api_lightweightmap.cpp | 406 JSHandle<TaggedArray> newArray = factory->CopyArray(oldArray, oldLength, newCapacity); in GrowCapacity()
|
| /arkcompiler/runtime_core/compiler/tests/ |
| D | vixl_exec_module.h | 144 void CopyArray(void *arr_data, T *array) in CopyArray() function
|
| /arkcompiler/ets_runtime/ecmascript/ic/ |
| D | ic_runtime_stub-inl.h | 304 properties = factory->CopyArray(arrayHandle, capacity, in StoreWithTransition()
|
| /arkcompiler/ets_runtime/ecmascript/stubs/ |
| D | runtime_stubs.cpp | 226 DEF_RUNTIME_STUBS(CopyArray) in DEF_RUNTIME_STUBS() argument 228 RUNTIME_STUBS_HEADER(CopyArray); in DEF_RUNTIME_STUBS() 234 …return factory->CopyArray(array, length.GetInt(), capacity.GetInt()).GetTaggedValue().GetRawData(); in DEF_RUNTIME_STUBS() 276 …properties = factory->CopyArray(arrayHandle, capacity, JSObject::ComputePropertyCapacity(capacity)… in DEF_RUNTIME_STUBS()
|
| D | runtime_stubs.h | 140 V(CopyArray) \
|
| D | runtime_stubs-inl.h | 2157 argv = factory->CopyArray(argv, argvMayMaxLength, argvIndex); in RuntimeGetCallSpreadArgs()
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_object.cpp | 404 JSHandle<TaggedArray> resultList = factory->CopyArray(nameList, length, copyLength); in GetOwnPropertyKeys()
|