Home
last modified time | relevance | path

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

/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webcore/
H A Dark_imf_text_listener_adapter_impl.cpp82 void ArkIMFTextListenerAdapterImpl::HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) in HandleSelect() argument
84 real_->HandleSelect(keyCode, cursorMoveSkip); in HandleSelect()
H A Dark_imf_text_listener_adapter_impl.h49 void HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) override;
/ohos5.0/base/inputmethod/imf/frameworks/native/inputmethod_controller/src/
H A Dinput_data_channel_proxy.cpp113 int32_t InputDataChannelProxy::SelectByMovement(int32_t direction, int32_t cursorMoveSkip) in SelectByMovement() argument
115 return SendRequest(SELECT_BY_MOVEMENT, [direction, cursorMoveSkip](MessageParcel &parcel) { in SelectByMovement()
116 return ITypesUtil::Marshal(parcel, direction, cursorMoveSkip); in SelectByMovement()
H A Dinput_data_channel_stub.cpp309 int32_t InputDataChannelStub::SelectByMovement(int32_t direction, int32_t cursorMoveSkip) in SelectByMovement() argument
311 InputMethodController::GetInstance()->SelectByMovement(direction, cursorMoveSkip); in SelectByMovement()
H A Dinput_method_controller.cpp1069 void InputMethodController::SelectByMovement(int32_t direction, int32_t cursorMoveSkip) in SelectByMovement() argument
1072 cursorMoveSkip); in SelectByMovement()
1075 listener->HandleSelect(CURSOR_DIRECTION_BASE_VALUE + direction, cursorMoveSkip); in SelectByMovement()
/ohos5.0/base/inputmethod/imf/test/common/include/
H A Dtext_listener.h44 void HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) override;
65 static bool WaitHandleSelect(int32_t keyCode, int32_t cursorMoveSkip);
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webview/
H A Dark_imftext_listener_adapter_wrapper.cpp85 void ArkIMFTextListenerAdapterWrapper::HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) in HandleSelect() argument
87 ctocpp_->HandleSelect(keyCode, cursorMoveSkip); in HandleSelect()
H A Dark_imftext_listener_adapter_wrapper.h49 void HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) override;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/text_field/
H A Don_text_changed_listener_impl.cpp273 void OnTextChangedListenerImpl::HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) in HandleSelect() argument
275 auto task = [textField = field_, keyCode, cursorMoveSkip] { in HandleSelect()
282 …client->HandleOnSelect(static_cast<KeyCode>(keyCode), static_cast<CursorMoveSkip>(cursorMoveSkip)); in HandleSelect()
H A Don_text_changed_listener_impl.h41 void HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) override;
/ohos5.0/base/inputmethod/imf/test/common/src/
H A Dtext_listener.cpp129 void TextListener::HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) in HandleSelect() argument
133 selectionSkip_ = cursorMoveSkip; in HandleSelect()
287 bool TextListener::WaitHandleSelect(int32_t keyCode, int32_t cursorMoveSkip) in WaitHandleSelect() argument
/ohos5.0/base/inputmethod/imf/frameworks/js/napi/inputmethodclient/
H A Djs_get_input_method_textchange_listener.h38 void HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) override {} in HandleSelect() argument
/ohos5.0/base/inputmethod/imf/frameworks/ndk/include/
H A Dnative_text_changed_listener.h44 void HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) override {}; in HandleSelect() argument
/ohos5.0/base/inputmethod/imf/frameworks/native/inputmethod_controller/include/
H A Di_input_data_channel.h73 virtual int32_t SelectByMovement(int32_t direction, int32_t cursorMoveSkip) = 0;
H A Dinput_data_channel_proxy.h49 int32_t SelectByMovement(int32_t direction, int32_t cursorMoveSkip) override;
H A Dinput_data_channel_stub.h52 int32_t SelectByMovement(int32_t direction, int32_t cursorMoveSkip) override;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/
H A Don_text_changed_listener_impl.cpp254 void OnTextChangedListenerImpl::HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) in HandleSelect() argument
257 keyCode, cursorMoveSkip); in HandleSelect()
258 auto task = [textField = pattern_, keyCode, cursorMoveSkip] { in HandleSelect()
H A Don_text_changed_listener_impl.h46 void HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) override;
/ohos5.0/base/inputmethod/imf/interfaces/inner_api/inputmethod_controller/include/
H A Dinput_method_controller.h68 virtual void HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) = 0;
629 void SelectByMovement(int32_t direction, int32_t cursorMoveSkip);
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/include/
H A Dark_imf_adapter.h124 virtual void HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) = 0;
/ohos5.0/base/web/webview/ohos_adapter/inputmethodframework_adapter/include/
H A Dimf_adapter_impl.h70 void HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) override;
/ohos5.0/base/web/webview/ohos_adapter/inputmethodframework_adapter/src/
H A Dimf_adapter_impl.cpp172 void IMFTextListenerAdapterImpl::HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) in HandleSelect() argument
175 listener_->HandleSelect(keyCode, cursorMoveSkip); in HandleSelect()
/ohos5.0/base/web/webview/ohos_interface/include/ohos_adapter/
H A Dimf_adapter.h158 virtual void HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) = 0;
/ohos5.0/base/inputmethod/imf/test/unittest/cpp_test/src/
H A Dvirtual_listener_test.cpp68 void HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) override in HandleSelect() argument
/ohos5.0/base/web/webview/test/unittest/ohos_adapter/imf_adapter_test/
H A Dimf_adapter_impl_test.cpp198 void HandleSelect(int32_t keyCode, int32_t cursorMoveSkip) override in HandleSelect() argument