Home
last modified time | relevance | path

Searched refs:baseName (Results 1 - 20 of 20) sorted by relevance

/base/web/webview/interfaces/kits/napi/webasynccontroller/
H A Dnapi_web_async_controller.h38 static napi_value StoreWebArchiveInternal(napi_env env, napi_callback_info cbinfo, const std::string &baseName,
42 void StoreWebArchiveCallback(const std::string &baseName, bool autoName, napi_env env, napi_ref jsCallback);
44 void StoreWebArchivePromise(const std::string &baseName, bool autoName, napi_env env, napi_deferred deferred);
H A Dnapi_web_async_controller.cpp49 const std::string &baseName, bool autoName) in StoreWebArchiveInternal()
78 webAsyncController->StoreWebArchiveCallback(baseName, autoName, env, std::move(jsCallback)); in StoreWebArchiveInternal()
86 webAsyncController->StoreWebArchivePromise(baseName, autoName, env, deferred); in StoreWebArchiveInternal()
124 std::string baseName(stringValue); in JS_StoreWebArchive()
142 return StoreWebArchiveInternal(env, cbinfo, baseName, autoName); in JS_StoreWebArchive()
194 void NapiWebAsyncController::StoreWebArchiveCallback(const std::string &baseName, bool autoName, napi_env env, in StoreWebArchiveCallback() argument
241 nweb->StoreWebArchive(baseName, autoName, callbackImpl); in StoreWebArchiveCallback()
246 void NapiWebAsyncController::StoreWebArchivePromise(const std::string &baseName, bool autoName, napi_env env, in StoreWebArchivePromise() argument
283 nweb->StoreWebArchive(baseName, autoName, callbackImpl); in StoreWebArchivePromise()
48 StoreWebArchiveInternal(napi_env env, napi_callback_info cbinfo, const std::string &baseName, bool autoName) StoreWebArchiveInternal() argument
/base/global/i18n/frameworks/intl/src/
H A Dlocale_info.cpp78 baseName = locale.getBaseName(); in InitLocaleInfo()
79 std::replace(baseName.begin(), baseName.end(), '_', '-'); in InitLocaleInfo()
212 return baseName; in GetBaseName()
H A Dholiday_manager.cpp211 holidayItem->baseName = value; in ParseFileLine()
H A Dlocale_config.cpp471 const char* baseName = locale.getBaseName(); in ExtendWhiteLanguages() local
472 if (baseName != nullptr) { in ExtendWhiteLanguages()
473 std::string baseNameStr(baseName); in ExtendWhiteLanguages()
/base/global/i18n/frameworks/intl/include/
H A Dholiday_manager.h36 std::string baseName; member
H A Dlocale_info.h57 std::string baseName; member in OHOS::Global::I18n::LocaleInfo
/base/global/i18n_lite/tools/i18n-dat-tool/src/main/java/ohos/global/i18n/
H A DDataFetcher.java141 String baseName = matcher.group(1); in processWildcard()
144 if (loc.getLanguage().equals(baseName) && !LOCALES.containsKey(finalLanguageTag) && in processWildcard()
/base/web/webview/interfaces/kits/napi/webviewcontroller/
H A Dwebview_controller.h178 void StoreWebArchiveCallback(const std::string &baseName, bool autoName, napi_env env, napi_ref jsCallback);
180 void StoreWebArchivePromise(const std::string &baseName, bool autoName, napi_env env, napi_deferred deferred);
H A Dwebview_controller.cpp392 void WebviewController::StoreWebArchiveCallback(const std::string &baseName, bool autoName, napi_env env, in StoreWebArchiveCallback() argument
442 nweb_ptr->StoreWebArchive(baseName, autoName, callbackImpl); in StoreWebArchiveCallback()
446 void WebviewController::StoreWebArchivePromise(const std::string &baseName, bool autoName, napi_env env, in StoreWebArchivePromise() argument
483 nweb_ptr->StoreWebArchive(baseName, autoName, callbackImpl); in StoreWebArchivePromise()
H A Dnapi_webview_controller.h141 const std::string &baseName, bool autoName);
H A Dnapi_webview_controller.cpp2690 std::string baseName; in StoreWebArchive() local
2691 if (!NapiParseUtils::ParseString(env, argv[INTEGER_ZERO], baseName)) { in StoreWebArchive()
2693 NWebError::FormatString(ParamCheckErrorMsgTemplate::TYPE_ERROR, "baseName", "string")); in StoreWebArchive()
2697 if (baseName.empty()) { in StoreWebArchive()
2699 NWebError::FormatString(ParamCheckErrorMsgTemplate::PARAM_NOT_NULL, "baseName")); in StoreWebArchive()
2721 return StoreWebArchiveInternal(env, info, baseName, autoName); in StoreWebArchive()
2725 const std::string &baseName, bool autoName) in StoreWebArchiveInternal()
2751 webviewController->StoreWebArchiveCallback(baseName, autoName, env, std::move(jsCallback)); in StoreWebArchiveInternal()
2759 webviewController->StoreWebArchivePromise(baseName, autoName, env, deferred); in StoreWebArchiveInternal()
2724 StoreWebArchiveInternal(napi_env env, napi_callback_info info, const std::string &baseName, bool autoName) StoreWebArchiveInternal() argument
/base/web/webview/test/fuzztest/ohos_nweb/nwebhelper_fuzzer/
H A Dnweb_create_window.h148 const std::string& baseName, bool autoName, std::shared_ptr<NWebStringValueCallback> callback) override
/base/web/webview/test/unittest/common/
H A Dnweb_create_window.h192 void StoreWebArchive(const std::string &baseName, bool autoName,
/base/global/i18n/interfaces/js/kits/src/
H A Dholiday_manager_addon.cpp265 status = napi_set_named_property(env, result, "baseName", in CreateHolidayItem()
266 VariableConvertor::CreateString(env, holidayItem.baseName)); in CreateHolidayItem()
268 HILOG_ERROR_I18N("Failed to set element baseName."); in CreateHolidayItem()
/base/web/webview/interfaces/kits/cj/include/
H A Dwebview_controller_impl.h177 void StoreWebArchiveCallback(std::string baseName, bool autoName,
/base/web/webview/interfaces/kits/cj/src/
H A Dwebview_controller_impl.cpp600 void WebviewControllerImpl::StoreWebArchiveCallback(std::string baseName, bool autoName, in StoreWebArchiveCallback() argument
623 nweb_ptr->StoreWebArchive(baseName, autoName, callbackImpl); in StoreWebArchiveCallback()
H A Dwebview_ffi.cpp706 std::string baseName = std::string(cBaseName); in FfiOHOSWebviewCtlStoreWebArchive() local
712 nativeWebviewCtl->StoreWebArchiveCallback(baseName, autoName, onChange); in FfiOHOSWebviewCtlStoreWebArchive()
/base/web/webview/ohos_interface/include/ohos_nweb/
H A Dnweb.h604 * @param baseName the filename where the archive should be placed This
611 const std::string& baseName, bool autoName, std::shared_ptr<NWebStringValueCallback> callback) = 0;
/base/global/i18n/frameworks/intl/test/unittest/
H A Dintl_test.cpp219 string baseName = "en-GB"; in HWTEST_F() local
223 EXPECT_EQ(loc->GetBaseName(), baseName); in HWTEST_F()

Completed in 32 milliseconds