Searched refs:presentValue (Results 1 – 6 of 6) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
D | js_array.cpp | 400 JSMutableHandle<JSTaggedValue> presentValue(thread, JSTaggedValue::Undefined()); in Sort() local 406 …presentValue.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()
|
D | tagged_list.cpp | 412 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/ |
D | builtins_typedarray.cpp | 1401 JSMutableHandle<JSTaggedValue> presentValue(thread, JSTaggedValue::Undefined()); in Sort() local 1411 …presentValue.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()
|
D | builtins_array.cpp | 2225 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/ |
D | containers_vector.cpp | 761 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()
|
D | containers_arraylist.cpp | 585 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()
|