Home
last modified time | relevance | path

Searched full:invoke (Results 1 – 25 of 38) sorted by relevance

12

/ark/js_runtime/ecmascript/builtins/tests/
Dbuiltins_regexp_test.cpp80 // invoke RegExpConstructor method in CreateRegExpObjByPatternAndFlags()
87 // invoke RegExpConstructor method in HWTEST_F_L0()
106 // invoke RegExpConstructor method in HWTEST_F_L0()
123 // invoke RegExpConstructor method in HWTEST_F_L0()
140 // invoke RegExpConstructor method in HWTEST_F_L0()
158 // invoke RegExpConstructor method in HWTEST_F_L0()
175 // invoke RegExpConstructor method in HWTEST_F_L0()
181 // invoke GetSource method in HWTEST_F_L0()
192 // invoke RegExpConstructor method in HWTEST_F_L0()
198 // invoke GetSource method in HWTEST_F_L0()
[all …]
/ark/runtime_core/runtime/tests/
Dmethod_test.cpp126 TEST_F(MethodTest, Invoke) in TEST_F() argument
179 // Invoke f calls interpreter in TEST_F()
182 Value v = f_method->Invoke(ManagedThread::GetCurrent(), args.data()); in TEST_F()
187 // Invoke f called compiled code 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()
/ark/js_runtime/ecmascript/builtins/
Dbuiltins_promise.cpp323 // 2. Return Invoke(promise, "then", «undefined, onRejected»). in Catch()
335 return JSFunction::Invoke(thread, promise, thenKey, 2, arguments->GetArgv()); // 2: two args in Catch()
508 // i. Let nextPromise be Invoke(constructor, "resolve", «‍nextValue»). in PerformPromiseAll()
512 …JSTaggedValue taggedNextPromise = JSFunction::Invoke(thread, ctor, resolveKey, 1, arguments->GetAr… in PerformPromiseAll()
534 … // r. Let result be Invoke(nextPromise, "then", «‍resolveElement, resultCapability.[[Reject]]»). in PerformPromiseAll()
538 … JSFunction::Invoke(thread, nextPromise, thenKey, 2, arguments->GetArgv()); // 2: two args in PerformPromiseAll()
563 // h. Let nextPromise be Invoke(C, "resolve", «nextValue»). in PerformPromiseRace()
565 …// j. Let result be Invoke(nextPromise, "then", «promiseCapability.[[Resolve]], promiseCapabili… in PerformPromiseRace()
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()
/ark/runtime_core/runtime/bridge/arch/aarch64/
Dinterpreter_to_compiled_code_bridge_dyn_aarch64.S73 // invoke the entrypoint
161 // invoke the entrypoint
Dinterpreter_to_compiled_code_bridge_aarch64.S260 // invoke the method
422 // invoke the method
Dcompiled_code_to_interpreter_bridge_dyn_aarch64.S102 // invoke the method
Dcompiled_code_to_interpreter_bridge_aarch64.S106 // invoke the method
/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_iterator.cpp75 // 1.If value was not passed, then Let result be Invoke(iterator, "next", «‍ »). in IteratorNext()
93 // 2.Let result be Invoke(iterator, "next", «‍value»). in IteratorNext()
Djs_function.h85 static JSTaggedValue Invoke(JSThread *thread, const JSHandle<JSTaggedValue> &thisArg,
/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/runtime_core/runtime/bridge/arch/amd64/
Dinterpreter_to_compiled_code_bridge_dyn_amd64.S84 // invoke the method
219 // invoke the entrypoint
Dinterpreter_to_compiled_code_bridge_amd64.S365 // invoke the method
568 // invoke the method
/ark/runtime_core/runtime/include/
Dmethod.h199 * Invoke the method as a static method.
202 Value Invoke(ManagedThread *thread, Value *args, bool proxy_call = false);
206 Invoke(thread, args); in InvokeVoid()
210 * Invoke the method as a dynamic function.
Dmethod-inl.h123 LOG(DEBUG, INTERPRETER) << "Invoke entry: " << GetFullName(); in InvokeInterpretedCode()
159 LOG(DEBUG, INTERPRETER) << "Invoke exit: " << GetFullName(); in InvokeInterpretedCode()
/ark/runtime_core/runtime/tests/arch/amd64/
Dinvokation_helper.S80 // invoke
/ark/runtime_core/runtime/
Dhandle_base.h61 * jshandle->method(); // to invoke method of T
/ark/runtime_core/tests/cts-generator/cts-template/
Dcall.virt.short.yaml105Invoke virtual method with different amount (0 or 1) and type of argument. Primitives and referenc…
278Invoke virtual method with different pseudo-random values and check if correct value is stored in …
501 Invoke virtual method and check if registers after calling is restored.
Dcall.virt.range_base.yaml79Invoke virtual method with different amount (0, 1, 2 or 3) and type of argument. Primitives and re…
284Invoke virtual method with different pseudo-random values and check if correct value is stored in …
564 Invoke virtual method and check if registers after calling is restored.
Dcall.virt.yaml80Invoke virtual method with different amount (0, 1, 2 or 3) and type of argument. Primitives and re…
302Invoke virtual method with different pseudo-random values and check if correct value is stored in …
572 Invoke virtual method and check if registers after calling is restored.
Dcall.virt.range.yaml176Invoke virtual method with different pseudo-random values and check if correct value is stored in …
197 …st - generate pseudo-random values, store to registers as primitive/objects and invoke R.storeValue
/ark/js_runtime/ecmascript/ic/
Dinvoke_cache.cpp20 // Build the infrastructure and wait for TS to invoke.
/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()

12