Home
last modified time | relevance | path

Searched refs:GetTextIndexAtCursor (Results 1 – 23 of 23) sorted by relevance

/base/inputmethod/imf/frameworks/js/napi/inputmethodclient/
Djs_get_input_method_textchange_listener.cpp78 int32_t JsGetInputMethodTextChangedListener::GetTextIndexAtCursor() in GetTextIndexAtCursor() function in OHOS::MiscServices::JsGetInputMethodTextChangedListener
80 return JsGetInputMethodController::GetInstance()->GetTextIndexAtCursor(); in GetTextIndexAtCursor()
Djs_get_input_method_textchange_listener.h41 int32_t GetTextIndexAtCursor() override;
Djs_get_input_method_controller.h187 int32_t GetTextIndexAtCursor();
Djs_get_input_method_controller.cpp1077 int32_t JsGetInputMethodController::GetTextIndexAtCursor() in GetTextIndexAtCursor() function in OHOS::MiscServices::JsGetInputMethodController
/base/inputmethod/imf/frameworks/native/inputmethod_controller/include/
Dinput_data_channel_stub.h46 int32_t GetTextIndexAtCursor(int32_t &index) override;
63 int32_t GetTextIndexAtCursor(int32_t msgId, MessageParcel &data, MessageParcel &reply);
Di_input_data_channel.h66 virtual int32_t GetTextIndexAtCursor(int32_t &index) = 0;
Dinput_data_channel_proxy.h51 int32_t GetTextIndexAtCursor(int32_t &index) override;
/base/web/webview/test/unittest/ohos_adapter/imf_adapter_test/
Dimf_adapter_impl_test.cpp100 int32_t GetTextIndexAtCursor() override in GetTextIndexAtCursor() function in OHOS::NWeb::IMFTextListenerTest
263 listenerTest->GetTextIndexAtCursor();
293 listenerTest->GetTextIndexAtCursor();
/base/inputmethod/imf/test/common/include/
Dtext_listener.h46 int32_t GetTextIndexAtCursor() override;
/base/web/webview/ohos_adapter/inputmethodframework_adapter/include/
Dimf_adapter_impl.h51 int32_t GetTextIndexAtCursor() override;
/base/web/webview/ohos_adapter/inputmethodframework_adapter/src/
Dimf_adapter_impl.cpp165 int32_t IMFTextListenerAdapterImpl::GetTextIndexAtCursor() in GetTextIndexAtCursor() function in OHOS::NWeb::IMFTextListenerAdapterImpl
168 return listener_->GetTextIndexAtCursor(); in GetTextIndexAtCursor()
/base/inputmethod/imf/frameworks/native/inputmethod_controller/src/
Dinput_data_channel_stub.cpp67 GetTextIndexAtCursor(MessageID::MSG_ID_GET_TEXT_INDEX_AT_CURSOR, data, reply); in OnRemoteRequest()
229 int32_t InputDataChannelStub::GetTextIndexAtCursor(int32_t msgId, MessageParcel &data, MessageParce… in GetTextIndexAtCursor() function in OHOS::MiscServices::InputDataChannelStub
258 int32_t InputDataChannelStub::GetTextIndexAtCursor(int32_t &index) in GetTextIndexAtCursor() function in OHOS::MiscServices::InputDataChannelStub
Dinput_data_channel_proxy.cpp106 int32_t InputDataChannelProxy::GetTextIndexAtCursor(int32_t &index) in GetTextIndexAtCursor() function in OHOS::MiscServices::InputDataChannelProxy
Dinput_method_controller.cpp350 GetTextIndexAtCursor(msg); in WorkThread()
827 void InputMethodController::GetTextIndexAtCursor(const Message *msg) in GetTextIndexAtCursor() function in OHOS::MiscServices::InputMethodController
837 index = listener->GetTextIndexAtCursor(); in GetTextIndexAtCursor()
/base/inputmethod/imf/interfaces/inner_api/inputmethod_controller/include/
Dinput_method_controller.h58 virtual int32_t GetTextIndexAtCursor() = 0;
458 void GetTextIndexAtCursor(const Message *msg);
/base/web/webview/ohos_adapter/interfaces/
Dimf_adapter.h114 virtual int32_t GetTextIndexAtCursor() = 0;
/base/inputmethod/imf/test/common/src/
Dtext_listener.cpp137 int32_t TextListener::GetTextIndexAtCursor() in GetTextIndexAtCursor() function in OHOS::MiscServices::TextListener
/base/inputmethod/imf/frameworks/native/inputmethod_ability/include/
Dinput_method_ability.h73 int32_t GetTextIndexAtCursor(int32_t &index);
/base/inputmethod/imf/test/unittest/cpp_test/src/
Dinput_method_ability_exception_test.cpp219 ret = inputMethodAbility_->GetTextIndexAtCursor(index);
Dinput_method_ability_test.cpp556 auto ret = inputMethodAbility_->GetTextIndexAtCursor(index);
572 auto ret = inputMethodAbility_->GetTextIndexAtCursor(index);
/base/inputmethod/imf/frameworks/native/inputmethod_ability/src/
Dinput_method_ability.cpp605 int32_t InputMethodAbility::GetTextIndexAtCursor(int32_t &index) in GetTextIndexAtCursor() function in OHOS::MiscServices::InputMethodAbility
612 return channel->GetTextIndexAtCursor(index); in GetTextIndexAtCursor()
/base/inputmethod/imf/frameworks/js/napi/inputmethodability/
Djs_text_input_client_engine.cpp42 DECLARE_NAPI_FUNCTION("getTextIndexAtCursor", GetTextIndexAtCursor), in Init()
757 napi_value JsTextInputClientEngine::GetTextIndexAtCursor(napi_env env, napi_callback_info info) in GetTextIndexAtCursor() function in OHOS::MiscServices::JsTextInputClientEngine
771 int32_t code = InputMethodAbility::GetInstance()->GetTextIndexAtCursor(ctxt->index); in GetTextIndexAtCursor()
793 int32_t ret = InputMethodAbility::GetInstance()->GetTextIndexAtCursor(index); in GetTextIndexAtCursorSync()
Djs_text_input_client_engine.h301 static napi_value GetTextIndexAtCursor(napi_env env, napi_callback_info info);