Home
last modified time | relevance | path

Searched refs:fromKey (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_array.cpp450 JSMutableHandle<JSTaggedValue> fromKey(thread, JSTaggedValue::Undefined()); in Concat() local
483 fromKey.Update(JSTaggedValue::ToString(thread, JSTaggedValue(k))); in Concat()
485 bool exists = JSTaggedValue::HasProperty(thread, ele, fromKey); in Concat()
490 JSArray::FastGetPropertyByValue(thread, ele, fromKey); in Concat()
619 JSMutableHandle<JSTaggedValue> fromKey(thread, JSTaggedValue::Undefined()); in CopyWithin() local
622 fromKey.Update(JSTaggedValue(copyFrom)); in CopyWithin()
624 …l exists = (thisObjVal->IsTypedArray() || JSTaggedValue::HasProperty(thread, thisObjVal, fromKey)); in CopyWithin()
627 …Handle<JSTaggedValue> fromValHandle = JSArray::FastGetPropertyByValue(thread, thisObjVal, fromKey); in CopyWithin()
2348 JSMutableHandle<JSTaggedValue> fromKey(thread, JSTaggedValue::Undefined()); in Splice() local
2353 fromKey.Update(JSTaggedValue(from)); in Splice()
[all …]
/arkcompiler/ets_runtime/ecmascript/
Djs_stable_array.cpp123 JSMutableHandle<JSTaggedValue> fromKey(thread, JSTaggedValue::Undefined()); in Splice() local
128 fromKey.Update(JSTaggedValue(from)); in Splice()
129 bool exists = JSTaggedValue::HasProperty(thread, thisObjVal, fromKey); in Splice()
132 … JSHandle<JSTaggedValue> fromValue = JSArray::FastGetPropertyByValue(thread, thisObjVal, fromKey); in Splice()