Home
last modified time | relevance | path

Searched refs:Invoke (Results 1 – 18 of 18) sorted by relevance

/ark/runtime_core/runtime/tests/
Dmethod_test.cpp126 TEST_F(MethodTest, Invoke) in TEST_F() argument
182 Value v = f_method->Invoke(ManagedThread::GetCurrent(), args.data()); in TEST_F()
191 v = f_method->Invoke(ManagedThread::GetCurrent(), args.data()); in TEST_F()
226 Value v = method->Invoke(ManagedThread::GetCurrent(), args.data()); in TEST_F()
505 Value v = main_method->Invoke(thread, args.data()); in TEST_F()
Dinterpreter_test.cpp3787 Value v = method->Invoke(ManagedThread::GetCurrent(), args.data()); in TEST_F()
3871 Value v = method->Invoke(ManagedThread::GetCurrent(), args.data()); in TEST_F()
3886 Value v = method->Invoke(ManagedThread::GetCurrent(), args.data()); in TEST_F()
/ark/js_runtime/ecmascript/
Djs_invoker.cpp27 JSTaggedValue JsInvoker::Invoke(JSThread *thread) in Invoke() function in panda::ecmascript::JsInvoker
Djs_invoker.h56 JSTaggedValue Invoke(JSThread *thread);
Djs_function.h85 static JSTaggedValue Invoke(JSThread *thread, const JSHandle<JSTaggedValue> &thisArg,
Djs_function.cpp297 JSTaggedValue JSFunction::Invoke(JSThread *thread, const JSHandle<JSTaggedValue> &thisArg, in Invoke() function in panda::ecmascript::JSFunction
Dobject_factory.cpp671 …JSTaggedValue obj = JSFunction::Invoke(thread_, nativePrototype, ctorKey, 1, arguments->GetArgv()); in NewJSError()
/ark/js_runtime/ecmascript/tests/
Djs_function_test.cpp133 HWTEST_F_L0(JSFunctionTest, Invoke) in HWTEST_F_L0() argument
152 JSTaggedValue res = JSFunction::Invoke(thread, callee, calleeKey, 1, arguments->GetArgv()); in HWTEST_F_L0()
/ark/js_runtime/ecmascript/builtins/
Dbuiltins_promise.cpp335 return JSFunction::Invoke(thread, promise, thenKey, 2, arguments->GetArgv()); // 2: two args in Catch()
512 …JSTaggedValue taggedNextPromise = JSFunction::Invoke(thread, ctor, resolveKey, 1, arguments->GetAr… in PerformPromiseAll()
538 … JSFunction::Invoke(thread, nextPromise, thenKey, 2, arguments->GetArgv()); // 2: two args in PerformPromiseAll()
596 …JSTaggedValue result = JSFunction::Invoke(thread, constructor, resolveStr, 1, arguments->GetArgv()… in PerformPromiseRace()
606 …result = JSFunction::Invoke(thread, nextPromise, thenStr, 2, arguments->GetArgv()); // 2: two args in PerformPromiseRace()
Dbuiltins_date.cpp178 return JSFunction::Invoke(thread, objectHandle, calleeKey, 0, nullptr); in ToJSON()
Dbuiltins_object.cpp751 … return JSFunction::Invoke(thread, object, calleeKey, argsList->GetLength(), arguments->GetArgv()); in ToLocaleString()
Dbuiltins_string.cpp648 return JSFunction::Invoke(thread, rx, matchTag, 1, arguments->GetArgv()); in Match()
1079 return JSFunction::Invoke(thread, rx, searchTag, 1, arguments->GetArgv()); in Search()
Dbuiltins_array.cpp2429 JSFunction::Invoke(thread, nextValueHandle, in ToLocaleString()
/ark/runtime_core/runtime/include/
Dmethod.h202 Value Invoke(ManagedThread *thread, Value *args, bool proxy_call = false);
206 Invoke(thread, args); in InvokeVoid()
/ark/runtime_core/runtime/interpreter/
Druntime_interface.h164 return method->Invoke(thread, args); in InvokeMethod()
/ark/runtime_core/runtime/core/
Dcore_vm.cpp242 Value v = entrypoint->Invoke(thread, &arg_val); in InvokeEntrypointImpl()
/ark/runtime_core/runtime/
Dmethod.cpp156 Value Method::Invoke(ManagedThread *thread, Value *args, bool proxy_call) in Invoke() function in panda::Method
/ark/js_runtime/ecmascript/napi/
Djsnapi.cpp1212 JSTaggedValue result = JSFunction::Invoke(thread, promise, catchKey, 1, arguments->GetArgv()); in Catch()
1228 …JSTaggedValue result = JSFunction::Invoke(thread, promise, thenKey, 2, arguments->GetArgv()); // … in Then()
1245 …JSTaggedValue result = JSFunction::Invoke(thread, promise, thenKey, 2, arguments->GetArgv()); // … in Then()