Home
last modified time | relevance | path

Searched refs:SetHtmlText (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webcore/
H A Dark_paste_data_record_adapter_wrapper.cpp49 bool ArkPasteDataRecordAdapterWrapper::SetHtmlText(std::shared_ptr<std::string> htmlText) in SetHtmlText() function in OHOS::ArkWeb::ArkPasteDataRecordAdapterWrapper
51 return ctocpp_->SetHtmlText((void*)(&htmlText)); in SetHtmlText()
H A Dark_paste_data_record_adapter_wrapper.h29 bool SetHtmlText(std::shared_ptr<std::string> htmlText) override;
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webview/
H A Dark_paste_data_record_adapter_impl.cpp45 bool ArkPasteDataRecordAdapterImpl::SetHtmlText(void* htmlText) in SetHtmlText() function in OHOS::ArkWeb::ArkPasteDataRecordAdapterImpl
48 return real_->SetHtmlText(*temp); in SetHtmlText()
H A Dark_paste_data_record_adapter_impl.h29 bool SetHtmlText(void* htmlText) override;
/ohos5.0/base/web/webview/ohos_adapter/pasteboard_adapter/include/
H A Dpasteboard_client_adapter_impl.h44 bool SetHtmlText(std::shared_ptr<std::string> htmlText) override;
45 bool SetHtmlText(std::shared_ptr<std::string> htmlText, std::shared_ptr<std::string> plainText);
/ohos5.0/base/web/webview/test/fuzztest/ohos_adapter/pasteboard_adapter/sethtmltext_fuzzer/
H A Dsethtmltext_fuzzer.cpp37 dataRecordAdapter->SetHtmlText(htmlText); in SetHtmlTextFuzzTest()
/ohos5.0/base/web/webview/ohos_adapter/pasteboard_adapter/src/
H A Dpasteboard_client_adapter_impl.cpp101 bool PasteDataRecordAdapterImpl::SetHtmlText(std::shared_ptr<std::string> htmlText) in SetHtmlText() function in OHOS::NWeb::PasteDataRecordAdapterImpl
103 return SetHtmlText(htmlText, nullptr); in SetHtmlText()
106 bool PasteDataRecordAdapterImpl::SetHtmlText( in SetHtmlText() function in OHOS::NWeb::PasteDataRecordAdapterImpl
135 SetHtmlText(htmlText, plainText); in SetPlainText()
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/include/
H A Dark_pasteboard_client_adapter.h122 virtual bool SetHtmlText(void* htmlText) = 0;
/ohos5.0/base/web/webview/test/unittest/pasteboard_adapter/
H A Dpasteboard_client_adapter_test.cpp610 record->SetHtmlText(pasteData);
694 bool reset = g_datarecordnull->SetHtmlText(htmlText);
696 reset = g_datarecord->SetHtmlText(nullptr);
698 reset = g_datarecord->SetHtmlText(htmlText);
/ohos5.0/base/web/webview/ohos_interface/include/ohos_adapter/
H A Dpasteboard_client_adapter.h122 virtual bool SetHtmlText(std::shared_ptr<std::string> htmlText) = 0;
/ohos5.0/foundation/distributeddatamgr/pasteboard/framework/test/src/
H A Dtlv_object_test.cpp62 …auto record1 = builder.SetPlainText(plainText).SetHtmlText(htmlText).SetUri(uri).SetWant(want).Bui… in GenRecord()
/ohos5.0/foundation/distributeddatamgr/pasteboard/framework/innerkits/include/
H A Dpaste_data_record.h132 Builder &SetHtmlText(std::shared_ptr<std::string> htmlText);
/ohos5.0/foundation/distributeddatamgr/pasteboard/framework/innerkits/src/
H A Dpaste_data_record.cpp68 PasteDataRecord::Builder &PasteDataRecord::Builder::SetHtmlText(std::shared_ptr<std::string> htmlTe… in SetHtmlText() function in OHOS::MiscServices::PasteDataRecord::Builder
140 return Builder(MIMETYPE_TEXT_HTML).SetHtmlText(std::make_shared<std::string>(htmlText)).Build(); in NewHtmlRecord()
H A Dpasteboard_client.cpp351 SetPlainText(pasteData.GetPrimaryText()).SetHtmlText(webData->GetPrimaryHtml()).Build(); in RebuildWebviewPasteData()
/ohos5.0/foundation/distributeddatamgr/pasteboard/test/fuzztest/pasteboardclient_fuzzer/
H A Dpasteboardclient_fuzzer.cpp315 builder.SetHtmlText(htmlText3); in FuzzPastedataRecord002()
/ohos5.0/foundation/distributeddatamgr/pasteboard/interfaces/kits/napi/src/
H A Dnapi_pastedata.cpp523 builder.SetHtmlText(std::make_shared<std::string>(propValue)); in SetStringProp()
/ohos5.0/foundation/distributeddatamgr/pasteboard/services/test/unittest/src/
H A Dpaste_service_test.cpp610 … .SetHtmlText(std::make_shared<std::string>(htmlText))