Searched refs:copyLengthOfElements (Results 1 – 3 of 3) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
D | js_object-inl.h | 543 …*thread, const JSHandle<JSObject> &obj, uint32_t *copyLengthOfKeys, uint32_t *copyLengthOfElements) in GetOwnEnumerableNamesInFastMode() argument 550 thread, obj, 0, numOfElements, copyLengthOfElements) : factory->EmptyArray(); in GetOwnEnumerableNamesInFastMode()
|
D | js_object.cpp | 1817 uint32_t copyLengthOfElements = 0; in EnumerableOwnNames() local 1818 …ementPair = GetOwnEnumerableNamesInFastMode(thread, obj, ©LengthOfKeys, ©LengthOfElements); in EnumerableOwnNames() 1822 if (copyLengthOfKeys != 0 && copyLengthOfElements != 0) { in EnumerableOwnNames() 1823 …ggedArray::AppendSkipHole(thread, elementArray, keyArray, copyLengthOfKeys + copyLengthOfElements); in EnumerableOwnNames() 1827 } else if (copyLengthOfElements != 0) { in EnumerableOwnNames() 1828 …elementArray->SetLength(copyLengthOfElements); // elementArray will skip hole value, need re-set l… in EnumerableOwnNames() 1909 uint32_t copyLengthOfElements = 0; in EnumerableOwnPropertyNames() local 1912 …ementPair = GetOwnEnumerableNamesInFastMode(thread, obj, ©LengthOfKeys, ©LengthOfElements); in EnumerableOwnPropertyNames() 1915 …SHandle<TaggedArray> properties = factory->NewTaggedArray(copyLengthOfKeys + copyLengthOfElements); in EnumerableOwnPropertyNames() 1916 if (copyLengthOfElements != 0) { in EnumerableOwnPropertyNames() [all …]
|
D | js_object.h | 768 …thread, const JSHandle<JSObject> &obj, uint32_t *copyLengthOfKeys, uint32_t *copyLengthOfElements);
|