/arkcompiler/runtime_core/libpandabase/tests/ |
H A D | list_test.cpp | 118 list2.Splice(list2.before_begin(), list); in TEST_F() 122 list.Splice(list.before_begin(), list2, list2.before_begin() + 5, list2.end()); in TEST_F() 126 list.Splice(list.before_begin(), list2); in TEST_F() 130 list2.Splice(list2.before_begin(), list, list.begin() + 1, list.begin() + 5); in TEST_F() 134 list2.Splice(list2.begin(), list, list.before_begin()); in TEST_F()
|
/arkcompiler/runtime_core/static_core/libpandabase/tests/ |
H A D | list_test.cpp | 121 list2.Splice(list2.before_begin(), list); in TEST_F() 125 list.Splice(list.before_begin(), list2, list2.before_begin() + 5U, list2.end()); in TEST_F() 129 list.Splice(list.before_begin(), list2); in TEST_F() 133 list2.Splice(list2.before_begin(), list, list.begin() + 1U, list.begin() + 5U); in TEST_F() 137 list2.Splice(list2.begin(), list, list.before_begin()); in TEST_F()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | list.h | 301 void Splice(ConstIterator position, List &other) in Splice() function 303 Splice(position, other, other.before_begin(), other.end()); in Splice() 309 void Splice(ConstIterator position, List &other, ConstIterator first) in Splice() function 312 Splice(position, other, first, first + SHIFT); in Splice() 318 void Splice(ConstIterator position, List &src_list, ConstIterator first, ConstIterator last) in Splice() function
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | list.h | 293 void Splice(ConstIterator position, List &other) in Splice() function 295 Splice(position, other, other.before_begin(), other.end()); in Splice() 299 void Splice(ConstIterator position, List &other, ConstIterator first) in Splice() function 302 Splice(position, other, first, first + SHIFT); in Splice() 306 void Splice(ConstIterator position, List &srcList, ConstIterator first, ConstIterator last) in Splice() function
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_array.h | 96 V("splice", Splice, 2, ArraySplice) \ 179 static JSTaggedValue Splice(EcmaRuntimeCallInfo *argv);
|
H A D | builtins_shared_array.h | 86 V("splice", Splice, 2, INVALID) \ 141 static JSTaggedValue Splice(EcmaRuntimeCallInfo *argv);
|
H A D | builtins_shared_array.cpp | 1851 JSTaggedValue BuiltinsSharedArray::Splice(EcmaRuntimeCallInfo *argv) in Splice() function in panda::ecmascript::builtins::BuiltinsSharedArray 1854 BUILTINS_API_TRACE(argv->GetThread(), SharedArray, Splice); in Splice() 1926 return JSStableArray::Splice(JSHandle<JSSharedArray>::Cast(thisHandle), argv, start, insertCount, in Splice()
|
H A D | builtins_array.cpp | 2388 JSTaggedValue BuiltinsArray::Splice(EcmaRuntimeCallInfo *argv) in Splice() function in panda::ecmascript::builtins::BuiltinsArray 2391 BUILTINS_API_TRACE(argv->GetThread(), Array, Splice); in Splice() 2457 return JSStableArray::Splice(JSHandle<JSArray>::Cast(thisHandle), argv, start, insertCount, in Splice()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_stable_array.h | 34 static JSTaggedValue Splice(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo *argv, uint32_t start, 37 static JSTaggedValue Splice(JSHandle<JSSharedArray> receiver, EcmaRuntimeCallInfo *argv, uint32_t start,
|
H A D | runtime_call_id.h | 289 V(Array, Splice) \ 325 V(SharedArray, Splice) \
|
H A D | js_stable_array.cpp | 212 JSTaggedValue JSStableArray::Splice(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo *argv, in Splice() function in panda::ecmascript::JSStableArray 260 JSTaggedValue JSStableArray::Splice(JSHandle<JSSharedArray> receiver, EcmaRuntimeCallInfo *argv, in Splice() function in panda::ecmascript::JSStableArray
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | monitor.h | 59 void Splice(ThreadList &other);
|
H A D | monitor.cpp | 54 void ThreadList<T>::Splice(ThreadList &other) in Splice() function in ark::ThreadList 558 monitor->toWakeup_.Splice(monitor->waiters_); in NotifyAll()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_stable_array_test.cpp | 126 * @tc.name: Splice 129 * calling Splice function with the source Array, an EcmaRuntimeCallInfo that set Args from 2 as the 135 HWTEST_F_L0(JSStableArrayTest, Splice) in HWTEST_F_L0() 166 JSStableArray::Splice(JSHandle<JSArray>::Cast(thisObjHandle), ecmaRuntimeCallInfo, offsetStartInsert, in HWTEST_F_L0() 177 // Check the JSArray(in-out-parameter) changed through calling the Splice function. in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_shared_array_test.cpp | 417 HWTEST_F_L0(BuiltinsSharedArrayTest, Splice) in HWTEST_F_L0() 437 JSTaggedValue result = Array::Splice(ecmaRuntimeCallInfo1); in HWTEST_F_L0()
|
H A D | builtins_array_test.cpp | 605 HWTEST_F_L0(BuiltinsArrayTest, Splice) in HWTEST_F_L0() 623 JSTaggedValue result = Array::Splice(ecmaRuntimeCallInfo1); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | builtins_call_signature.h | 101 V(Splice, Array, Undefined()) \
|
H A D | builtins_array_stub_builder.cpp | 3041 void BuiltinsArrayStubBuilder::Splice(GateRef glue, GateRef thisValue, GateRef numArgs, in Splice() function in panda::ecmascript::kungfu::BuiltinsArrayStubBuilder
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
H A D | snapshot_processor.cpp | 385 reinterpret_cast<uintptr_t>(BuiltinsArray::Splice),
|