• Home
  • Raw
  • Download

Lines Matching refs:JSArray

34 JSTaggedValue JSStableArray::Push(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo *argv)  in Push()
55 JSTaggedValue JSStableArray::Pop(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo *argv) in Pop()
63 JSArray::CheckAndCopyArray(thread, receiver); in Pop()
82 JSTaggedValue JSStableArray::Splice(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo *argv, in Splice()
90 …JSTaggedValue newArray = JSArray::ArraySpeciesCreate(thread, thisObjHandle, JSTaggedNumber(actualD… in Splice()
111 JSHandle<JSArray>::Cast(newArrayHandle)->SetArrayLength(thread, actualDeleteCount); in Splice()
122 … JSHandle<JSTaggedValue> fromValue = JSArray::FastGetPropertyByValue(thread, thisObjVal, fromKey); in Splice()
146 JSArray::CheckAndCopyArray(thread, receiver); in Splice()
186 JSTaggedValue JSStableArray::Shift(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo *argv) in Shift()
193 JSArray::CheckAndCopyArray(thread, receiver); in Shift()
215 JSTaggedValue JSStableArray::Join(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo *argv) in Join()
407 … JSHandle<JSTaggedValue> kValue1 = JSArray::FastGetPropertyByValue(thread, thisObjVal, k); in HandleEveryOfStable()
458 … JSHandle<JSTaggedValue> kValue1 = JSArray::FastGetPropertyByValue(thread, thisObjVal, k); in HandleforEachOfStable()
492 … JSHandle<JSTaggedValue> kValueHandle = JSArray::FastGetPropertyByValue(thread, receiver, from); in IndexOf()
594 JSArray::CheckAndCopyArray(thread, JSHandle<JSArray>::Cast(thisObjHandle)); in Reverse()
705 JSTaggedValue JSStableArray::At(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo *argv) in At()
731 JSTaggedValue JSStableArray::With(JSThread *thread, JSHandle<JSArray> receiver, in With()
735 JSTaggedValue newArray = JSArray::ArraySpeciesCreate(thread, thisObjHandle, in With()
761 JSHandle<JSArray>::Cast(newArrayHandle)->SetArrayLength(thread, insertCount); in With()
766 JSTaggedValue JSStableArray::ToSpliced(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo *argv, in ToSpliced()
772 JSTaggedValue newArray = JSArray::ArraySpeciesCreate(thread, thisObjHandle, in ToSpliced()
814 JSHandle<JSArray>::Cast(newArrayHandle)->SetArrayLength(thread, insertCount); in ToSpliced()
819 JSTaggedValue JSStableArray::ToReversed(JSThread *thread, JSHandle<JSArray> receiver, in ToReversed()
823 JSTaggedValue newArray = JSArray::ArraySpeciesCreate(thread, thisObjHandle, in ToReversed()
845 JSHandle<JSArray>::Cast(newArrayHandle)->SetArrayLength(thread, insertCount); in ToReversed()