Home
last modified time | relevance | path

Searched refs:boolVal (Results 1 – 4 of 4) sorted by relevance

/base/global/i18n/interfaces/js/kits/include/
Dvariable_convertor.h30 …etBoolOptionValue(napi_env env, napi_value &options, const std::string &optionName, bool &boolVal);
/base/web/webview/interfaces/kits/napi/webviewcontroller/
Dwebview_javascript_result_callback.cpp221 bool boolVal; in ParseNapiValue2NwebValue() local
222 napi_get_value_bool(env, value, &boolVal); in ParseNapiValue2NwebValue()
224 nwebValue->SetBoolean(boolVal); in ParseNapiValue2NwebValue()
/base/global/i18n/interfaces/js/kits/src/
Dvariable_convertor.cpp54 …GetBoolOptionValue(napi_env env, napi_value &options, const std::string &optionName, bool &boolVal) in GetBoolOptionValue() argument
75 napi_get_value_bool(env, optionValue, &boolVal); in GetBoolOptionValue()
/base/account/os_account/interfaces/kits/napi/appaccount/src/
Dnapi_app_account.cpp459 napi_value boolVal = nullptr; in CheckDataSyncEnabledInternal() local
460 napi_get_boolean(env, asyncContext->result, &boolVal); in CheckDataSyncEnabledInternal()
463 ProcessCallbackOrPromise(env, asyncContext, err, boolVal); in CheckDataSyncEnabledInternal()
1177 napi_value boolVal = nullptr; in CheckAuthTokenVisibilityCompleteCB() local
1178 napi_get_boolean(env, asyncContext->isVisible, &boolVal); in CheckAuthTokenVisibilityCompleteCB()
1181 ProcessCallbackOrPromise(env, asyncContext, err, boolVal); in CheckAuthTokenVisibilityCompleteCB()
1421 napi_value boolVal = nullptr; in CheckAppAccess() local
1422 napi_get_boolean(env, context->isAccessible, &boolVal); in CheckAppAccess()
1423 … ProcessCallbackOrPromise(env, context, GenerateBusinessError(env, context->errCode), boolVal); in CheckAppAccess()