Home
last modified time | relevance | path

Searched refs:GetHtmlText (Results 1 – 25 of 25) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/pasteboard/framework/test/src/
H A Dweb_controller_test.cpp153 EXPECT_EQ(*(pasteDataRecords[pasteData->GetRecordCount() - 1]->GetHtmlText()), *html);
203 EXPECT_EQ(*(pasteDataRecords[pasteData->GetRecordCount() - 1]->GetHtmlText()), *html);
221 auto newHtmlStr = recordGet->GetHtmlText();
291 EXPECT_EQ(*(pasteDataRecords[pasteData->GetRecordCount() - 1]->GetHtmlText()), *html);
338 EXPECT_EQ(*(pasteDataRecords[pasteData->GetRecordCount() - 1]->GetHtmlText()), *html);
357 auto newHtmlStr = recordGet->GetHtmlText();
H A Dtlv_object_test.cpp93 EXPECT_EQ(*(record2->GetHtmlText()), *(record1->GetHtmlText()));
H A Dconvert_utils_test.cpp400 auto plain = record->GetHtmlText();
H A Dpasteboard_client_udmf_delay_test.cpp479 auto htmlText = pasteRecord->GetHtmlText();
/ohos5.0/foundation/distributeddatamgr/pasteboard/services/core/src/
H A Dpasteboard_pattern.cpp45 if (hasHTML && record->GetHtmlText() != nullptr) { in Detect()
46 std::string recordText = ExtractHtmlContent(*(record->GetHtmlText())); in Detect()
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webcore/
H A Dark_paste_data_record_adapter_wrapper.cpp75 std::shared_ptr<std::string> ArkPasteDataRecordAdapterWrapper::GetHtmlText() in GetHtmlText() function in OHOS::ArkWeb::ArkPasteDataRecordAdapterWrapper
78 ctocpp_->GetHtmlText((void*)&result); in GetHtmlText()
H A Dark_paste_data_record_adapter_wrapper.h37 std::shared_ptr<std::string> GetHtmlText() override;
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webview/
H A Dark_paste_data_record_adapter_impl.cpp71 void ArkPasteDataRecordAdapterImpl::GetHtmlText(void* data) in GetHtmlText() function in OHOS::ArkWeb::ArkPasteDataRecordAdapterImpl
73 std::shared_ptr<std::string> str = real_->GetHtmlText(); in GetHtmlText()
H A Dark_paste_data_record_adapter_impl.h37 void GetHtmlText(void* data) override;
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/capability/clipboard/
H A Dclipboard_impl.cpp393 if (pasteDataRecord->GetHtmlText() != nullptr) { in GetDataSync()
394 auto htmlText = pasteDataRecord->GetHtmlText(); in GetDataSync()
461 if (pasteDataRecord->GetHtmlText() != nullptr) { in ProcessPasteDataRecord()
462 auto htmlText = pasteDataRecord->GetHtmlText(); in ProcessPasteDataRecord()
640 if (pasteDataRecord->GetHtmlText() != nullptr && !hasSpanString) { in ProcessSpanStringData()
641 auto htmlText = pasteDataRecord->GetHtmlText(); in ProcessSpanStringData()
/ohos5.0/base/web/webview/test/fuzztest/ohos_adapter/pasteboard_adapter/getmimetype_fuzzer/
H A Dgetmimetype_fuzzer.cpp34 dataRecordAdapterImpl->GetHtmlText(); in GetMimeTypeFuzzTest()
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/include/
H A Dark_pasteboard_client_adapter.h134 virtual void GetHtmlText(void* data) = 0;
/ohos5.0/base/web/webview/ohos_interface/include/ohos_adapter/
H A Dpasteboard_client_adapter.h130 virtual std::shared_ptr<std::string> GetHtmlText() = 0;
/ohos5.0/base/web/webview/ohos_adapter/pasteboard_adapter/include/
H A Dpasteboard_client_adapter_impl.h51 std::shared_ptr<std::string> GetHtmlText() override;
/ohos5.0/base/web/webview/ohos_adapter/pasteboard_adapter/src/
H A Dpasteboard_client_adapter_impl.cpp134 if (auto htmlText = record_->GetHtmlText(); htmlText && !htmlText->empty()) { in SetPlainText()
276 std::shared_ptr<std::string> PasteDataRecordAdapterImpl::GetHtmlText() in GetHtmlText() function in OHOS::NWeb::PasteDataRecordAdapterImpl
/ohos5.0/foundation/distributeddatamgr/pasteboard/framework/innerkits/include/
H A Dpaste_data_record.h72 std::shared_ptr<std::string> GetHtmlText() const;
/ohos5.0/foundation/distributeddatamgr/pasteboard/interfaces/cj/src/
H A Dpasteboard_ffi.cpp103 if (record->GetHtmlText() != nullptr) { in FillCPasteDataRecord()
104 std::string resHtmlText = *(record->GetHtmlText()); in FillCPasteDataRecord()
/ohos5.0/foundation/distributeddatamgr/pasteboard/framework/innerkits/src/
H A Dpasteboard_web_controller.cpp78 std::shared_ptr<std::string> html = item->GetHtmlText(); in RebuildHtml()
H A Dpaste_data.cpp200 std::shared_ptr<std::string> primary = item->GetHtmlText(); in GetPrimaryHtml()
H A Dpaste_data_record.cpp297 std::shared_ptr<std::string> PasteDataRecord::GetHtmlText() const in GetHtmlText() function in OHOS::MiscServices::PasteDataRecord
/ohos5.0/base/web/webview/test/unittest/pasteboard_adapter/
H A Dpasteboard_client_adapter_test.cpp302 std::shared_ptr<std::string> htmlText = g_paster->GetHtmlText();
307 std::shared_ptr<std::string> html = g_pasternull->GetHtmlText();
/ohos5.0/foundation/distributeddatamgr/pasteboard/test/fuzztest/pasteboardclient_fuzzer/
H A Dpasteboardclient_fuzzer.cpp263 pasteDataRecord.GetHtmlText(); in FuzzPastedataRecord()
/ohos5.0/foundation/distributeddatamgr/pasteboard/interfaces/ndk/unittest/
H A Dpasteboard_capi_test.cpp817 auto html1 = record1->GetHtmlText();
/ohos5.0/foundation/distributeddatamgr/pasteboard/services/test/unittest/src/
H A Dpaste_service_test.cpp245 auto newHtmlText = record->GetHtmlText();
625 auto newHtmlText = firstRecord->GetHtmlText();
/ohos5.0/foundation/distributeddatamgr/pasteboard/interfaces/kits/napi/src/
H A Dnapi_pastedata_record.cpp264 auto htmlText = value_->GetHtmlText(); in JSFillInstance()