Home
last modified time | relevance | path

Searched refs:jFunc (Results 1 - 2 of 2) sorted by relevance

/foundation/arkui/ace_engine_lite/frameworks/module_manager/test/unittest/common/
H A Drequire_module_tdd_test.cpp119 JSIValue jFunc = JSI::GetNamedProperty(moduleRequired, funcName); in RequireModuleTest005() local
121 * @tc.expected: step2. jFunc is not undefined in RequireModuleTest005()
123 EXPECT_FALSE(JSI::ValueIsUndefined(jFunc)); in RequireModuleTest005()
125 * @tc.steps: step3. call jFunc and the value returned is undefined in RequireModuleTest005()
127 jerry_value_t jResult = jerry_call_function(AS_JERRY_VALUE(jFunc), AS_JERRY_VALUE(moduleRequired), nullptr, 0); in RequireModuleTest005()
133 JSI::ReleaseValueList(moduleRequired, jFunc, result); in RequireModuleTest005()
153 JSIValue jFunc = JSI::GetNamedProperty(moduleRequired, funcName); in RequireModuleTest006() local
155 * @tc.expected: step2. jFunc is not undefined in RequireModuleTest006()
157 EXPECT_FALSE(JSI::ValueIsUndefined(jFunc)); in RequireModuleTest006()
159 * @tc.steps: step3. call jFunc in RequireModuleTest006()
187 JSIValue jFunc = JSI::GetNamedProperty(moduleRequired, funcName); RequireModuleTest007() local
[all...]
/foundation/arkui/ace_engine_lite/frameworks/native_engine/jsi/
H A Djsi.cpp170 jerry_value_t jFunc = jerry_create_external_function(CreateJerryFuncHelper); in CreateFunction() local
172 jerry_set_object_native_pointer(jFunc, nativePointer, nullptr); in CreateFunction()
173 return AS_JSI_VALUE(jFunc); in CreateFunction()
434 jerry_value_t jFunc = AS_JERRY_VALUE(funcObj); in CallFunction() local
437 jerry_value_t ret = jerry_call_function(jFunc, jThis, nullptr, 0); in CallFunction()
453 jerry_value_t ret = jerry_call_function(jFunc, jThis, jArgv, argc); in CallFunction()

Completed in 3 milliseconds