Searched refs:RemoveRangeFrom (Results 1 - 10 of 10) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/containers/ |
H A D | containers_plainarray.h | 40 static JSTaggedValue RemoveRangeFrom(EcmaRuntimeCallInfo *argv);
|
H A D | containers_plainarray.cpp | 432 JSTaggedValue ContainersPlainArray::RemoveRangeFrom(EcmaRuntimeCallInfo *argv) in RemoveRangeFrom() function in panda::ecmascript::containers::ContainersPlainArray 436 BUILTINS_API_TRACE(thread, PlainArray, RemoveRangeFrom); in RemoveRangeFrom() 474 JSTaggedValue value = array->RemoveRangeFrom(thread, index, size); in RemoveRangeFrom()
|
H A D | containers_private.cpp | 674 SetFrozenFunction(thread, plainArrayFuncPrototype, "removeRangeFrom", ContainersPlainArray::RemoveRangeFrom, in InitializePlainArray()
|
/arkcompiler/ets_runtime/ecmascript/js_api/ |
H A D | js_api_plain_array.h | 56 JSTaggedValue RemoveRangeFrom(JSThread *thread, int32_t index, int32_t batchSize);
|
H A D | js_api_plain_array.cpp | 162 JSTaggedValue JSAPIPlainArray::RemoveRangeFrom(JSThread *thread, int32_t index, int32_t batchSize) in RemoveRangeFrom() function in panda::ecmascript::JSAPIPlainArray
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_api_plain_array_test.cpp | 186 value3 = array->RemoveRangeFrom(thread, lvalue, batchSize); in HWTEST_F_L0() 190 // test RemoveRangeFrom exception in HWTEST_F_L0() 191 array->RemoveRangeFrom(thread, lvalue, -1); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/containers/tests/ |
H A D | containers_plainarray_test.cpp | 140 JSTaggedValue result = ContainersPlainArray::RemoveRangeFrom(callInfo); in PlainArrayRemoveRangeFrom() 413 HWTEST_F_L0(ContainersPlainArrayTest, RemoveRangeFrom) in HWTEST_F_L0() 530 CONTAINERS_API_TYPE_MISMATCH_EXCEPTION_TEST(ContainersPlainArray, RemoveRangeFrom); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/test/fuzztest/containersplainarray_fuzzer/ |
H A D | containersplainarray_fuzzer.cpp | 714 ContainersPlainArray::RemoveRangeFrom(cfForRemoveRangeFrom); // expected to return the safe size
in ContainersPlainArray_RemoveRangeFrom_FuzzTest()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | runtime_call_id.h | 1055 V(PlainArray, RemoveRangeFrom) \
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
H A D | snapshot_processor.cpp | 930 reinterpret_cast<uintptr_t>(PlainArray::RemoveRangeFrom),
|
Completed in 14 milliseconds