/arkcompiler/ets_runtime/ecmascript/containers/ |
H A D | containers_arraylist.h | 43 static JSTaggedValue RemoveByRange(EcmaRuntimeCallInfo *argv);
|
H A D | containers_vector.h | 41 static JSTaggedValue RemoveByRange(EcmaRuntimeCallInfo *argv);
|
H A D | containers_arraylist.cpp | 415 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 D | containers_vector.cpp | 383 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 D | containers_private.cpp | 303 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 D | js_api_arraylist_test.cpp | 356 * @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 D | js_api_vector_test.cpp | 360 * @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 D | containers_arraylist_test.cpp | 140 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 D | containers_vector_test.cpp | 383 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 D | js_api_arraylist.h | 53 static JSTaggedValue RemoveByRange(JSThread *thread, const JSHandle<JSAPIArrayList> &arrayList,
|
H A D | js_api_vector.h | 63 static JSTaggedValue RemoveByRange(JSThread *thread, const JSHandle<JSAPIVector> &vector,
|
H A D | js_api_vector.cpp | 204 JSTaggedValue JSAPIVector::RemoveByRange(JSThread *thread, const JSHandle<JSAPIVector> &vector, in RemoveByRange() function in panda::ecmascript::JSAPIVector
|
H A D | js_api_arraylist.cpp | 217 JSTaggedValue JSAPIArrayList::RemoveByRange(JSThread *thread, const JSHandle<JSAPIArrayList> &arrayList, in RemoveByRange() function in panda::ecmascript::JSAPIArrayList
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | runtime_call_id.h | 967 V(ArrayList, RemoveByRange) \ 1158 V(Vector, RemoveByRange) \
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
H A D | snapshot_processor.cpp | 730 reinterpret_cast<uintptr_t>(ArrayList::RemoveByRange), 874 reinterpret_cast<uintptr_t>(Vector::RemoveByRange),
|
/arkcompiler/ets_runtime/test/fuzztest/arraylist_fuzzer/ |
H A D | arraylist_fuzzer.cpp | 745 ContainersArrayList::RemoveByRange(callInfo); in ArrayListRemoveByRangeFuzzTest()
|
/arkcompiler/ets_runtime/test/fuzztest/containersvectorcommon_fuzzer/ |
H A D | containersvectorcommon_fuzzer.h | 465 ContainersVector::RemoveByRange(callInfo1);
in ContainersVectorRemoveByRangeFuzzTest()
|