Home
last modified time | relevance | path

Searched refs:GetWordSelection (Results 1 – 22 of 22) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Ddata_detector_mgr.cpp87 std::vector<int8_t> ret = GetWordSelection(content, caretPos); in AdjustWordSelection()
99 std::vector<int8_t> DataDetectorMgr::GetWordSelection(const std::string& text, int8_t offset) in GetWordSelection() function in OHOS::Ace::DataDetectorMgr
102 return engine_->GetWordSelection(text, offset); in GetWordSelection()
/ohos5.0/foundation/arkui/ace_engine/adapter/preview/osal/advance/
H A Ddata_detector_mgr.cpp44 auto ret = GetWordSelection(content, caretPos); in AdjustWordSelection()
49 std::vector<int8_t> DataDetectorMgr::GetWordSelection(const std::string& text, int8_t offset) in GetWordSelection() function in OHOS::Ace::DataDetectorMgr
/ohos5.0/foundation/arkui/ace_engine/test/mock/core/common/
H A Dmock_data_detector_mgr.cpp42 auto ret = GetWordSelection(content, caretPos); in AdjustWordSelection()
47 std::vector<int8_t> DataDetectorMgr::GetWordSelection(const std::string& text, int8_t offset) in GetWordSelection() function in OHOS::Ace::DataDetectorMgr
H A Dmock_data_detector_mgr.h24 MOCK_METHOD2(GetWordSelection, std::vector<int8_t> (const std::string& text, int8_t offset));
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/common/ai/
H A Ddata_detector_mgr.h39 std::vector<int8_t> GetWordSelection(const std::string& text, int8_t offset) override;
/ohos5.0/foundation/arkui/ace_engine/interfaces/inner_api/ace/ai/
H A Ddata_detector_interface.h63 virtual std::vector<int8_t> GetWordSelection(const std::string& text, int8_t offset) in GetWordSelection() function
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/rich_editor/
H A Drich_editor_common_test_ng.cpp133 EXPECT_CALL(mockDataDetectorMgr, GetWordSelection(_, _)) in InitAdjustObject()
H A Drich_editor_test_ng.cpp386 EXPECT_CALL(mockDataDetectorMgr, GetWordSelection(_, _)) in InitAdjustObject()
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webview/
H A Dark_web_handler_impl.h526 ArkWebCharVector GetWordSelection(const ArkWebString& text, int8_t offset) override;
H A Dark_web_handler_impl.cpp755 ArkWebCharVector ArkWebHandlerImpl::GetWordSelection(const ArkWebString& text, int8_t offset) in GetWordSelection() function in OHOS::ArkWeb::ArkWebHandlerImpl
760 …std::vector<int8_t> vec = nweb_handler_->GetWordSelection(ArkWebStringStructToClass(text), offset); in GetWordSelection()
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/include/
H A Dark_web_handler.h630 virtual ArkWebCharVector GetWordSelection(const ArkWebString& text, int8_t offset) = 0;
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/text_input/
H A Dtext_input_wordbreak_test.cpp229 EXPECT_CALL(mockDataDetectorMgr, GetWordSelection(_, _)) in InitAdjustObject()
H A Dtext_field_controller_test.cpp46 EXPECT_CALL(mockDataDetectorMgr, GetWordSelection(_, _)) in InitAdjustObject()
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webcore/
H A Dark_web_handler_wrapper.cpp860 std::vector<int8_t> ArkWebHandlerWrapper::GetWordSelection(const std::string& text, int8_t offset) in GetWordSelection() function in OHOS::ArkWeb::ArkWebHandlerWrapper
863 ArkWebCharVector ark_result = ark_web_handler_->GetWordSelection(ark_text, offset); in GetWordSelection()
H A Dark_web_handler_wrapper.h549 std::vector<int8_t> GetWordSelection(const std::string& text, int8_t offset) override;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/web/resource/
H A Dweb_client_impl.h273 std::vector<int8_t> GetWordSelection(const std::string& text, int8_t offset) override;
H A Dweb_client_impl.cpp1097 std::vector<int8_t> WebClientImpl::GetWordSelection(const std::string& text, int8_t offset) in GetWordSelection() function in OHOS::Ace::WebClientImpl
1103 return delegate->GetWordSelection(text, offset); in GetWordSelection()
H A Dweb_delegate.h965 std::vector<int8_t> GetWordSelection(const std::string& text, int8_t offset);
H A Dweb_delegate.cpp6947 std::vector<int8_t> WebDelegate::GetWordSelection(const std::string& text, int8_t offset) in GetWordSelection() function in OHOS::Ace::WebDelegate
6952 return webPattern->GetWordSelection(text, offset); in GetWordSelection()
/ohos5.0/base/web/webview/ohos_interface/include/ohos_nweb/
H A Dnweb_handler.h861 virtual std::vector<int8_t> GetWordSelection(const std::string& text, int8_t offset) in GetWordSelection() function
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/web/
H A Dweb_pattern.h631 std::vector<int8_t> GetWordSelection(const std::string& text, int8_t offset);
H A Dweb_pattern.cpp6513 std::vector<int8_t> WebPattern::GetWordSelection(const std::string& text, int8_t offset) in GetWordSelection() function in OHOS::Ace::NG::WebPattern
6517 return DataDetectorMgr::GetInstance().GetWordSelection(text, offset); in GetWordSelection()