/base/web/webview/interfaces/kits/napi/webasynccontroller/ |
H A D | napi_web_async_controller.h | 38 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 D | napi_web_async_controller.cpp | 49 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 D | locale_info.cpp | 78 baseName = locale.getBaseName();
in InitLocaleInfo() 79 std::replace(baseName.begin(), baseName.end(), '_', '-');
in InitLocaleInfo() 212 return baseName;
in GetBaseName()
|
H A D | holiday_manager.cpp | 211 holidayItem->baseName = value; in ParseFileLine()
|
H A D | locale_config.cpp | 471 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 D | holiday_manager.h | 36 std::string baseName; member
|
H A D | locale_info.h | 57 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 D | DataFetcher.java | 141 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 D | webview_controller.h | 178 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 D | webview_controller.cpp | 392 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 D | napi_webview_controller.h | 141 const std::string &baseName, bool autoName);
|
H A D | napi_webview_controller.cpp | 2690 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 D | nweb_create_window.h | 148 const std::string& baseName, bool autoName, std::shared_ptr<NWebStringValueCallback> callback) override
|
/base/web/webview/test/unittest/common/ |
H A D | nweb_create_window.h | 192 void StoreWebArchive(const std::string &baseName, bool autoName,
|
/base/global/i18n/interfaces/js/kits/src/ |
H A D | holiday_manager_addon.cpp | 265 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 D | webview_controller_impl.h | 177 void StoreWebArchiveCallback(std::string baseName, bool autoName,
|
/base/web/webview/interfaces/kits/cj/src/ |
H A D | webview_controller_impl.cpp | 600 void WebviewControllerImpl::StoreWebArchiveCallback(std::string baseName, bool autoName, in StoreWebArchiveCallback() argument 623 nweb_ptr->StoreWebArchive(baseName, autoName, callbackImpl); in StoreWebArchiveCallback()
|
H A D | webview_ffi.cpp | 706 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 D | nweb.h | 604 * @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 D | intl_test.cpp | 219 string baseName = "en-GB";
in HWTEST_F() local 223 EXPECT_EQ(loc->GetBaseName(), baseName);
in HWTEST_F()
|