/ark/runtime_core/runtime/tests/ |
D | method_test.cpp | 126 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()
|
D | interpreter_test.cpp | 3787 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/ |
D | js_invoker.cpp | 27 JSTaggedValue JsInvoker::Invoke(JSThread *thread) in Invoke() function in panda::ecmascript::JsInvoker
|
D | js_invoker.h | 56 JSTaggedValue Invoke(JSThread *thread);
|
D | js_function.h | 85 static JSTaggedValue Invoke(JSThread *thread, const JSHandle<JSTaggedValue> &thisArg,
|
D | js_function.cpp | 297 JSTaggedValue JSFunction::Invoke(JSThread *thread, const JSHandle<JSTaggedValue> &thisArg, in Invoke() function in panda::ecmascript::JSFunction
|
D | object_factory.cpp | 671 …JSTaggedValue obj = JSFunction::Invoke(thread_, nativePrototype, ctorKey, 1, arguments->GetArgv()); in NewJSError()
|
/ark/js_runtime/ecmascript/tests/ |
D | js_function_test.cpp | 133 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/ |
D | builtins_promise.cpp | 335 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()
|
D | builtins_date.cpp | 178 return JSFunction::Invoke(thread, objectHandle, calleeKey, 0, nullptr); in ToJSON()
|
D | builtins_object.cpp | 751 … return JSFunction::Invoke(thread, object, calleeKey, argsList->GetLength(), arguments->GetArgv()); in ToLocaleString()
|
D | builtins_string.cpp | 648 return JSFunction::Invoke(thread, rx, matchTag, 1, arguments->GetArgv()); in Match() 1079 return JSFunction::Invoke(thread, rx, searchTag, 1, arguments->GetArgv()); in Search()
|
D | builtins_array.cpp | 2429 JSFunction::Invoke(thread, nextValueHandle, in ToLocaleString()
|
/ark/runtime_core/runtime/include/ |
D | method.h | 202 Value Invoke(ManagedThread *thread, Value *args, bool proxy_call = false); 206 Invoke(thread, args); in InvokeVoid()
|
/ark/runtime_core/runtime/interpreter/ |
D | runtime_interface.h | 164 return method->Invoke(thread, args); in InvokeMethod()
|
/ark/runtime_core/runtime/core/ |
D | core_vm.cpp | 242 Value v = entrypoint->Invoke(thread, &arg_val); in InvokeEntrypointImpl()
|
/ark/runtime_core/runtime/ |
D | method.cpp | 156 Value Method::Invoke(ManagedThread *thread, Value *args, bool proxy_call) in Invoke() function in panda::Method
|
/ark/js_runtime/ecmascript/napi/ |
D | jsnapi.cpp | 1212 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()
|