Searched refs:copyLengthOfElements (Results 1 – 3 of 3) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
D | js_object-inl.h | 441 …*thread, const JSHandle<JSObject> &obj, uint32_t *copyLengthOfKeys, uint32_t *copyLengthOfElements) in GetOwnEnumerableNamesInFastMode() argument 447 thread, obj, 0, numOfElements, copyLengthOfElements) : factory->EmptyArray(); in GetOwnEnumerableNamesInFastMode()
|
D | js_object.cpp | 1554 uint32_t copyLengthOfElements = 0; in EnumerableOwnNames() local 1555 …ementPair = GetOwnEnumerableNamesInFastMode(thread, obj, ©LengthOfKeys, ©LengthOfElements); in EnumerableOwnNames() 1559 if (copyLengthOfKeys != 0 && copyLengthOfElements != 0) { in EnumerableOwnNames() 1560 …ggedArray::AppendSkipHole(thread, elementArray, keyArray, copyLengthOfKeys + copyLengthOfElements); in EnumerableOwnNames() 1563 } else if (copyLengthOfElements != 0) { in EnumerableOwnNames() 1564 keys = factory->CopyArray(elementArray, copyLengthOfElements, copyLengthOfElements); in EnumerableOwnNames() 1643 uint32_t copyLengthOfElements = 0; in EnumerableOwnPropertyNames() local 1646 …ementPair = GetOwnEnumerableNamesInFastMode(thread, obj, ©LengthOfKeys, ©LengthOfElements); in EnumerableOwnPropertyNames() 1649 …SHandle<TaggedArray> properties = factory->NewTaggedArray(copyLengthOfKeys + copyLengthOfElements); in EnumerableOwnPropertyNames() 1650 if (copyLengthOfElements != 0) { in EnumerableOwnPropertyNames() [all …]
|
D | js_object.h | 670 …thread, const JSHandle<JSObject> &obj, uint32_t *copyLengthOfKeys, uint32_t *copyLengthOfElements);
|