/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/web/cross_platform/ |
H A D | web_object_event.h | 76 virtual void Confirm(void* object, const std::string& promptResult, int index) {}; in Confirm() function in OHOS::Ace::WebCommonDialogObject 77 virtual void Confirm(void* object, int index) {}; in Confirm() function in OHOS::Ace::WebCommonDialogObject 108 virtual bool Confirm(void* object, std::string& userName, std::string& pwd, int index) in Confirm() function in OHOS::Ace::WebHttpAuthRequestObject
|
H A D | web_delegate_cross.h | 103 void Confirm(const std::string& promptResult) override; 104 void Confirm() override; 126 bool Confirm(std::string& userName, std::string& pwd) override;
|
H A D | web_delegate_cross.cpp | 491 void DialogResult::Confirm(const std::string& promptResult) in Confirm() function in OHOS::Ace::DialogResult 495 TAG_LOGE(AceLogTag::ACE_WEB, "WebObjectEventManager DialogResult prompt Confirm failed"); in Confirm() 499 obj->Confirm(object_, promptResult, index_); in Confirm() 503 void DialogResult::Confirm() in Confirm() function in OHOS::Ace::DialogResult 507 TAG_LOGE(AceLogTag::ACE_WEB, "WebObjectEventManager DialogResult Confirm failed"); in Confirm() 510 obj->Confirm(object_, index_); in Confirm() 523 bool WebAuthResult::Confirm(std::string& userName, std::string& pwd) in Confirm() function in OHOS::Ace::WebAuthResult 530 return obj->Confirm(object_, userName, pwd, index_); in Confirm()
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_web_ffi.cpp | 268 res->Confirm(); in FfiOHOSAceFrameworkWebHandleConfirm() 275 res->Confirm(message); in FfiOHOSAceFrameworkWebHandlePromptConfirm()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_theme/theme_apply/ |
H A D | js_theme.h | 108 Color Confirm() const in Confirm() function in OHOS::Ace::Framework::JSThemeColors
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/web/ |
H A D | mock_web_delegate.cpp | 250 void ResultOhos::Confirm() {} in Confirm() function in OHOS::Ace::ResultOhos 251 void ResultOhos::Confirm(const std::string& message) {} in Confirm() function in OHOS::Ace::ResultOhos 254 bool AuthResultOhos::Confirm(std::string& userName, std::string& pwd) in Confirm() function in OHOS::Ace::AuthResultOhos
|
/foundation/arkui/ace_engine/frameworks/core/components/web/resource/ |
H A D | web_delegate.h | 109 void Confirm() override; 110 void Confirm(const std::string& message) override; 181 bool Confirm(std::string& userName, std::string& pwd) override;
|
H A D | web_delegate.cpp | 198 void ResultOhos::Confirm() in Confirm() function in OHOS::Ace::ResultOhos 201 result_->Confirm(); in Confirm() 205 void ResultOhos::Confirm(const std::string& message) in Confirm() function in OHOS::Ace::ResultOhos 208 result_->Confirm(message); in Confirm() 232 bool AuthResultOhos::Confirm(std::string& userName, std::string& pwd) in Confirm() function in OHOS::Ace::AuthResultOhos 235 return result_->Confirm(userName, pwd); in Confirm() 286 result_->Confirm(privateKeyFile, certChainFile); in HandleConfirm()
|
/foundation/arkui/ace_engine/frameworks/core/components/web/ |
H A D | web_event.h | 402 virtual void Confirm() = 0; 403 virtual void Confirm(const std::string& message) = 0; 467 virtual bool Confirm(std::string& userName, std::string& pwd) = 0;
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_web.cpp | 103 JSClass<JSWebDialog>::CustomMethod("handleConfirm", &JSWebDialog::Confirm); in JSBind() 114 void Confirm(const JSCallbackInfo& args) in Confirm() function in OHOS::OHOS::Ace::Framework::JSWebDialog 117 result_->Confirm(); in Confirm() 129 result_->Confirm(message); in PromptConfirm() 295 JSClass<JSWebHttpAuth>::CustomMethod("confirm", &JSWebHttpAuth::Confirm); in JSBind() 306 void Confirm(const JSCallbackInfo& args) in Confirm() function in OHOS::OHOS::Ace::Framework::JSWebHttpAuth 318 result_->Confirm(userName, password); in Confirm()
|