Home
last modified time | relevance | path

Searched refs:RemoveByRange (Results 1 - 17 of 17) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/containers/
H A Dcontainers_arraylist.h43 static JSTaggedValue RemoveByRange(EcmaRuntimeCallInfo *argv);
H A Dcontainers_vector.h41 static JSTaggedValue RemoveByRange(EcmaRuntimeCallInfo *argv);
H A Dcontainers_arraylist.cpp415 JSTaggedValue ContainersArrayList::RemoveByRange(EcmaRuntimeCallInfo *argv) in RemoveByRange() function in panda::ecmascript::containers::ContainersArrayList
418 BUILTINS_API_TRACE(argv->GetThread(), ArrayList, RemoveByRange); in RemoveByRange()
454 JSAPIArrayList::RemoveByRange(thread, JSHandle<JSAPIArrayList>::Cast(self), startIndex, endIndex); in RemoveByRange()
H A Dcontainers_vector.cpp383 JSTaggedValue ContainersVector::RemoveByRange(EcmaRuntimeCallInfo *argv) in RemoveByRange() function in panda::ecmascript::containers::ContainersVector
387 BUILTINS_API_TRACE(thread, Vector, RemoveByRange); in RemoveByRange()
404 JSAPIVector::RemoveByRange(thread, JSHandle<JSAPIVector>::Cast(self), in RemoveByRange()
H A Dcontainers_private.cpp303 SetFrozenFunction(thread, prototype, "removeByRange", ContainersArrayList::RemoveByRange, FuncLength::TWO); in InitializeArrayList()
802 SetFrozenFunction(thread, prototype, "removeByRange", ContainersVector::RemoveByRange, FuncLength::TWO); in InitializeVector()
/arkcompiler/ets_runtime/ecmascript/tests/
H A Djs_api_arraylist_test.cpp356 * @tc.name: RemoveByRange
361 HWTEST_F_L0(JSAPIArrayListTest, RemoveByRange) in HWTEST_F_L0()
369 // RemoveByRange in HWTEST_F_L0()
377 JSAPIArrayList::RemoveByRange(thread, arrayList, fromIndexValue, toIndexValue); in HWTEST_F_L0()
398 JSAPIArrayList::RemoveByRange(thread, arrayList, smallIndexValue, zeroIndexValue); in HWTEST_F_L0()
402 JSAPIArrayList::RemoveByRange(thread, arrayList, bigIndexValue, zeroIndexValue); in HWTEST_F_L0()
406 JSAPIArrayList::RemoveByRange(thread, arrayList, zeroIndexValue, zeroIndexValue); in HWTEST_F_L0()
410 JSAPIArrayList::RemoveByRange(thread, arrayList, zeroIndexValue, smallIndexValue); in HWTEST_F_L0()
414 JSAPIArrayList::RemoveByRange(thread, arrayList, zeroIndexValue, bigIndexValue); in HWTEST_F_L0()
H A Djs_api_vector_test.cpp360 * @tc.name: RemoveByRange
374 // test RemoveByRange exception in HWTEST_F_L0()
376 JSTaggedValue result1 = JSAPIVector::RemoveByRange(thread, toor, 0, 0); in HWTEST_F_L0()
381 JSTaggedValue result2 = JSAPIVector::RemoveByRange(thread, toor, -1, 0); in HWTEST_F_L0()
386 JSTaggedValue result3 = JSAPIVector::RemoveByRange(thread, toor, elementsNums, elementsNums * 2); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/containers/tests/
H A Dcontainers_arraylist_test.cpp140 JSTaggedValue result = ContainersArrayList::RemoveByRange(callInfo); in ArrayListRemoveByRange()
189 HWTEST_F_L0(ContainersArrayListTest, RemoveByRange) in HWTEST_F_L0()
378 CONTAINERS_API_TYPE_MISMATCH_EXCEPTION_TEST(ContainersArrayList, RemoveByRange); in HWTEST_F_L0()
H A Dcontainers_vector_test.cpp383 ContainersVector::RemoveByRange(callInfo); in HWTEST_F_L0()
936 CONTAINERS_API_TYPE_MISMATCH_EXCEPTION_TEST(ContainersVector, RemoveByRange); in HWTEST_F_L0()
955 CONTAINERS_API_EXCEPTION_TEST(ContainersVector, RemoveByRange, callInfo); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/js_api/
H A Djs_api_arraylist.h53 static JSTaggedValue RemoveByRange(JSThread *thread, const JSHandle<JSAPIArrayList> &arrayList,
H A Djs_api_vector.h63 static JSTaggedValue RemoveByRange(JSThread *thread, const JSHandle<JSAPIVector> &vector,
H A Djs_api_vector.cpp204 JSTaggedValue JSAPIVector::RemoveByRange(JSThread *thread, const JSHandle<JSAPIVector> &vector, in RemoveByRange() function in panda::ecmascript::JSAPIVector
H A Djs_api_arraylist.cpp217 JSTaggedValue JSAPIArrayList::RemoveByRange(JSThread *thread, const JSHandle<JSAPIArrayList> &arrayList, in RemoveByRange() function in panda::ecmascript::JSAPIArrayList
/arkcompiler/ets_runtime/ecmascript/
H A Druntime_call_id.h967 V(ArrayList, RemoveByRange) \
1158 V(Vector, RemoveByRange) \
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
H A Dsnapshot_processor.cpp730 reinterpret_cast<uintptr_t>(ArrayList::RemoveByRange),
874 reinterpret_cast<uintptr_t>(Vector::RemoveByRange),
/arkcompiler/ets_runtime/test/fuzztest/arraylist_fuzzer/
H A Darraylist_fuzzer.cpp745 ContainersArrayList::RemoveByRange(callInfo); in ArrayListRemoveByRangeFuzzTest()
/arkcompiler/ets_runtime/test/fuzztest/containersvectorcommon_fuzzer/
H A Dcontainersvectorcommon_fuzzer.h465 ContainersVector::RemoveByRange(callInfo1); in ContainersVectorRemoveByRangeFuzzTest()

Completed in 21 milliseconds