Home
last modified time | relevance | path

Searched refs:copyLengthOfElements (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Djs_object-inl.h441 …*thread, const JSHandle<JSObject> &obj, uint32_t *copyLengthOfKeys, uint32_t *copyLengthOfElements) in GetOwnEnumerableNamesInFastMode() argument
447 thread, obj, 0, numOfElements, copyLengthOfElements) : factory->EmptyArray(); in GetOwnEnumerableNamesInFastMode()
Djs_object.cpp1554 uint32_t copyLengthOfElements = 0; in EnumerableOwnNames() local
1555 …ementPair = GetOwnEnumerableNamesInFastMode(thread, obj, &copyLengthOfKeys, &copyLengthOfElements); 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, &copyLengthOfKeys, &copyLengthOfElements); in EnumerableOwnPropertyNames()
1649 …SHandle<TaggedArray> properties = factory->NewTaggedArray(copyLengthOfKeys + copyLengthOfElements); in EnumerableOwnPropertyNames()
1650 if (copyLengthOfElements != 0) { in EnumerableOwnPropertyNames()
[all …]
Djs_object.h670 …thread, const JSHandle<JSObject> &obj, uint32_t *copyLengthOfKeys, uint32_t *copyLengthOfElements);