Home
last modified time | relevance | path

Searched refs:presentValue (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Djs_array.cpp400 JSMutableHandle<JSTaggedValue> presentValue(thread, JSTaggedValue::Undefined()); in Sort() local
406presentValue.Update(ObjectFastOperator::FastGetPropertyByIndex<true>(thread, obj.GetTaggedValue(),… in Sort()
413 … int32_t compareResult = base::ArrayHelper::SortCompare(thread, fn, middleValue, presentValue); in Sort()
432 presentValue.GetTaggedValue()); in Sort()
Dtagged_list.cpp412 JSMutableHandle<JSTaggedValue> presentValue(thread, JSTaggedValue::Undefined()); in Sort() local
426 presentValue.Update(taggedList->GetElement(nodeIndexMapToDataIndex[i])); in Sort()
430 … compareResult = base::ArrayHelper::SortCompare(thread, callbackFn, middleValue, presentValue); in Sort()
444 … taggedList->SetElement(thread, nodeIndexMapToDataIndex[endIndex], presentValue.GetTaggedValue()); in Sort()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_typedarray.cpp1401 JSMutableHandle<JSTaggedValue> presentValue(thread, JSTaggedValue::Undefined()); in Sort() local
1411presentValue.Update(ObjectFastOperator::FastGetPropertyByValue(thread, thisObjHandle.GetTaggedValu… in Sort()
1421 middleValue, presentValue); in Sort()
1438 presentValue.GetTaggedValue()); in Sort()
1674 JSMutableHandle<JSTaggedValue> presentValue(thread, JSTaggedValue::Undefined()); in ToSorted() local
1690 presentValue.Update( in ToSorted()
1700 … TypedArrayHelper::SortCompare(thread, comparefnHandle, buffer, middleValue, presentValue); in ToSorted()
1717 thread, newArrObj.GetTaggedValue(), endIndex, presentValue.GetTaggedValue()); in ToSorted()
Dbuiltins_array.cpp2225 JSMutableHandle<JSTaggedValue> presentValue(thread, JSTaggedValue::Undefined()); in Sort() local
2231 presentValue.Update(ObjectFastOperator::FastGetPropertyByIndex<true>(thread, in Sort()
2239 …uble compareResult = ArrayHelper::SortCompare(thread, callbackFnHandle, middleValue, presentValue); in Sort()
2258 presentValue.GetTaggedValue()); in Sort()
/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_vector.cpp761 JSMutableHandle<JSTaggedValue> presentValue(thread, JSTaggedValue::Undefined()); in Sort() local
769 presentValue.Update(elements->Get(i)); in Sort()
773 …ompareResult = base::ArrayHelper::SortCompare(thread, callbackFnHandle, middleValue, presentValue); in Sort()
787 elements->Set(thread, endIndex, presentValue.GetTaggedValue()); in Sort()
Dcontainers_arraylist.cpp585 JSMutableHandle<JSTaggedValue> presentValue(thread, JSTaggedValue::Undefined()); in Sort() local
592 presentValue.Update(elements->Get(i)); in Sort()
597 middleValue, presentValue); in Sort()
610 elements->Set(thread, endIndex, presentValue.GetTaggedValue()); in Sort()