/arkcompiler/ets_runtime/test/executiontest/js/ |
H A D | termination_4.js | 31 function Join() {return a.join()};
function 32 Join();
34 Join();
|
/arkcompiler/runtime_core/static_core/verification/util/tests/ |
H A D | str_test.cpp | 44 EXPECT_EQ(Join<std::string>(Generator), "G, e, n, e, r, a, t, o, r"); in TEST_F() 45 EXPECT_EQ(Join<std::string>(Generator, "."), "G.e.n.e.r.a.t.o.r"); in TEST_F()
|
/arkcompiler/ets_runtime/test/executiontest/ |
H A D | thread_termination_test.cpp | 95 void Join()
in Join() function in panda::test::TerminatorThread 150 terminatorThread.Join();
in HWTEST_F_L0() 166 terminatorThread.Join();
in HWTEST_F_L0()
|
/arkcompiler/runtime_core/static_core/verification/util/ |
H A D | str.h | 27 StrT Join(Gen gen, StrT delim = {", "}) in Join() function
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_stable_array_test.cpp | 50 JSHandle<JSTaggedValue> handleTagValEcmaStrRet(thread, JSStableArray::Join(handleArr, ecmaRuntimeCallInfo)); in CallJoin() 231 * returned through calling Join function with the source Array and the EcmaRuntimeCallInfo is within 250 JSStableArray::Join(handleArr, ecmaRuntimeCallInfo)); in HWTEST_F_L0() 261 * EcmaString returned through calling Join function with the source Array and the EcmaRuntimeCallInfo is 281 JSStableArray::Join(handleArr, ecmaRuntimeCallInfo)); in HWTEST_F_L0() 293 Join function with the source Array and the EcmaRuntimeCallInfo is within expectations. 311 JSStableArray::Join(handleArr, ecmaRuntimeCallInfo)); in HWTEST_F_L0() 323 calling Join function with the source Array and the EcmaRuntimeCallInfo is within expectations. 345 JSStableArray::Join(handleArr, ecmaRuntimeCallInfo)); in HWTEST_F_L0() 358 calling Join functio [all...] |
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_array.h | 70 V("join", Join, 1, INVALID) \ 153 static JSTaggedValue Join(EcmaRuntimeCallInfo *argv);
|
H A D | builtins_shared_array.h | 60 V("join", Join, 1, INVALID) \ 133 static JSTaggedValue Join(EcmaRuntimeCallInfo *argv);
|
H A D | builtins_shared_typedarray.h | 96 V("join", Join, 1, INVALID) \ 157 static JSTaggedValue Join(EcmaRuntimeCallInfo *argv);
|
H A D | builtins_typedarray.h | 101 V("join", Join, 1, INVALID) \ 189 static JSTaggedValue Join(EcmaRuntimeCallInfo *argv);
|
H A D | builtins_shared_array.cpp | 1212 JSTaggedValue BuiltinsSharedArray::Join(EcmaRuntimeCallInfo *argv) in Join() function in panda::ecmascript::builtins::BuiltinsSharedArray 1216 BUILTINS_API_TRACE(argv->GetThread(), SharedArray, Join); in Join() 1224 auto opResult = BuiltinsArray::Join(argv); in Join()
|
H A D | builtins_shared_typedarray.cpp | 746 JSTaggedValue BuiltinsSharedTypedArray::Join(EcmaRuntimeCallInfo *argv) in Join() function in panda::ecmascript::builtins::BuiltinsSharedTypedArray 749 BUILTINS_API_TRACE(argv->GetThread(), SharedTypedArray, Join); in Join()
|
H A D | builtins_typedarray.cpp | 835 JSTaggedValue BuiltinsTypedArray::Join(EcmaRuntimeCallInfo *argv) in Join() function in panda::ecmascript::builtins::BuiltinsTypedArray 838 BUILTINS_API_TRACE(argv->GetThread(), TypedArray, Join); in Join()
|
H A D | builtins_array.cpp | 1288 JSTaggedValue BuiltinsArray::Join(EcmaRuntimeCallInfo *argv) in Join() function in panda::ecmascript::builtins::BuiltinsArray 1291 BUILTINS_API_TRACE(argv->GetThread(), Array, Join); in Join() 1302 return JSStableArray::Join(JSHandle<JSArray>::Cast(thisHandle), argv); in Join()
|
/arkcompiler/runtime_core/static_core/libpandabase/taskmanager/ |
H A D | worker_thread.cpp | 37 void WorkerThread::Join() in Join() function in ark::taskmanager::WorkerThread
|
H A D | worker_thread.h | 61 void Join();
|
H A D | task_scheduler.cpp | 323 worker->Join(); in Finalize()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_stable_array.h | 42 static JSTaggedValue Join(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo *argv);
|
H A D | runtime_call_id.h | 276 V(Array, Join) \ 316 V(SharedArray, Join) \ 881 V(TypedArray, Join) \ 929 V(SharedTypedArray, Join) \
|
H A D | js_stable_array.cpp | 480 JSTaggedValue JSStableArray::Join(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo *argv) in Join() function in panda::ecmascript::JSStableArray
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_collator_test.cpp | 81 result = BuiltinsArray::Join(ecmaRuntimeCallInfo); in CollatorAlgorithm()
|
H A D | builtins_shared_array_test.cpp | 1007 HWTEST_F_L0(BuiltinsSharedArrayTest, Join) in HWTEST_F_L0() 1025 JSTaggedValue result = Array::Join(ecmaRuntimeCallInfo1); in HWTEST_F_L0()
|
H A D | builtins_array_test.cpp | 1244 HWTEST_F_L0(BuiltinsArrayTest, Join) in HWTEST_F_L0() 1261 JSTaggedValue result = Array::Join(ecmaRuntimeCallInfo1); in HWTEST_F_L0()
|
H A D | builtins_shared_typedarray_test.cpp | 669 JSTaggedValue result = BuiltinsSharedTypedArray::Join(argv); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
H A D | snapshot_processor.cpp | 372 reinterpret_cast<uintptr_t>(BuiltinsArray::Join), 414 reinterpret_cast<uintptr_t>(BuiltinsTypedArray::Join),
|