Home
last modified time | relevance | path

Searched refs:stringifyValue (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/ability/form_fwk/frameworks/js/napi/form_binding_data/
H A Djs_form_binding_data.cpp60 napi_value stringifyValue = nullptr; in OnCreateFormBindingData() local
61 napi_get_named_property(env, jsonValue, "stringify", &stringifyValue); in OnCreateFormBindingData()
64 napi_call_function(env, jsonValue, stringifyValue, 1, funcArgv, &transValue); in OnCreateFormBindingData()
H A Dform_binding_data.cpp64 napi_value stringifyValue = nullptr; in OnCreateFormBindingData() local
65 napi_get_named_property(env, jsonValue, "stringify", &stringifyValue); in OnCreateFormBindingData()
68 napi_call_function(env, jsonValue, stringifyValue, 1, funcArgv, &transValue); in OnCreateFormBindingData()
/ohos5.0/foundation/ability/ability_runtime/frameworks/js/napi/feature_ability/
H A Djs_feature_ability.cpp204 napi_value stringifyValue = nullptr; in OnFinishWithResult() local
205 napi_get_named_property(env, jsonValue, "stringify", &stringifyValue); in OnFinishWithResult()
207 napi_call_function(env, jsonValue, stringifyValue, 1, &jsResultObj, &transValue); in OnFinishWithResult()
/ohos5.0/base/account/os_account/interfaces/kits/napi/common/src/
H A Dnapi_account_common.cpp613 napi_value stringifyValue = nullptr; in JsObjectToNativeString() local
614 napi_get_named_property(env, jsonValue, "stringify", &stringifyValue); in JsObjectToNativeString()
617 … napi_status status = napi_call_function(env, jsonValue, stringifyValue, 1, funcArgv, &transValue); in JsObjectToNativeString()
/ohos5.0/foundation/arkui/ace_engine/interfaces/napi/kits/plugincomponent/
H A Djs_plugin_util.cpp566 napi_value stringifyValue; in AceKVObjectToString() local
567 napi_get_named_property(env, jsonValue, "stringify", &stringifyValue); in AceKVObjectToString()
570 napi_call_function(env, jsonValue, stringifyValue, 1, funcArgv, &returnValue); in AceKVObjectToString()
/ohos5.0/foundation/arkui/ace_engine/interfaces/napi/kits/router/
H A Djs_router.cpp68 napi_value stringifyValue; in ParseParams() local
69 napi_get_named_property(env, jsonValue, "stringify", &stringifyValue); in ParseParams()
72 if (napi_call_function(env, jsonValue, stringifyValue, 1, funcArgv, &returnValue) != napi_ok) { in ParseParams()
/ohos5.0/commonlibrary/ets_utils/js_sys_module/console/
H A Dconsole.cpp253 napi_value stringifyValue = nullptr; in Dir() local
254 napi_get_named_property(env, jsonValue, "stringify", &stringifyValue); in Dir()
256 napi_call_function(env, jsonValue, stringifyValue, 1, &argv[0], &transValue); in Dir()