Home
last modified time | relevance | path

Searched refs:SelectByRange (Results 1 – 15 of 15) sorted by relevance

/ohos5.0/base/inputmethod/imf/test/unittest/cpp_test/src/
H A Dinput_method_ability_exception_test.cpp129 auto ret = inputMethodAbility_->SelectByRange(start, end);
134 ret = inputMethodAbility_->SelectByRange(start, end);
139 ret = inputMethodAbility_->SelectByRange(start, end);
144 ret = inputMethodAbility_->SelectByRange(start, end);
H A Dtext_listener_inner_api_test.cpp426 TextListenerInnerApiTest::imc_->SelectByRange(start, end);
446 TextListenerInnerApiTest::imc_->SelectByRange(start, end);
452 TextListenerInnerApiTest::imc_->SelectByRange(start, end);
H A Dinput_method_ability_test.cpp516 auto ret = inputMethodAbility_->SelectByRange(start, end);
533 auto ret = inputMethodAbility_->SelectByRange(start, end);
538 ret = inputMethodAbility_->SelectByRange(start, end);
H A Dinput_method_controller_test.cpp1182 inputMethodAbility_->SelectByRange(1, 2);
/ohos5.0/base/inputmethod/imf/frameworks/native/inputmethod_controller/src/
H A Dinput_data_channel_stub.cpp163 …return reply.WriteInt32(SelectByRange(start, end)) ? ErrorCode::NO_ERROR : ErrorCode::ERROR_EX_PAR… in SelectByRangeOnRemote()
303 int32_t InputDataChannelStub::SelectByRange(int32_t start, int32_t end) in SelectByRange() function in OHOS::MiscServices::InputDataChannelStub
305 InputMethodController::GetInstance()->SelectByRange(start, end); in SelectByRange()
H A Dinput_data_channel_proxy.cpp107 int32_t InputDataChannelProxy::SelectByRange(int32_t start, int32_t end) in SelectByRange() function in OHOS::MiscServices::InputDataChannelProxy
H A Dinput_method_controller.cpp1052 void InputMethodController::SelectByRange(int32_t start, int32_t end) in SelectByRange() function in OHOS::MiscServices::InputMethodController
/ohos5.0/base/inputmethod/imf/frameworks/native/inputmethod_controller/include/
H A Di_input_data_channel.h72 virtual int32_t SelectByRange(int32_t start, int32_t end) = 0;
H A Dinput_data_channel_proxy.h48 int32_t SelectByRange(int32_t start, int32_t end) override;
H A Dinput_data_channel_stub.h51 int32_t SelectByRange(int32_t start, int32_t end) override;
/ohos5.0/base/inputmethod/imf/frameworks/native/inputmethod_ability/include/
H A Dinput_method_ability.h71 int32_t SelectByRange(int32_t start, int32_t end);
/ohos5.0/base/inputmethod/imf/frameworks/js/napi/inputmethodability/
H A Djs_text_input_client_engine.cpp51 DECLARE_NAPI_FUNCTION("selectByRange", SelectByRange), in Init()
600 napi_value JsTextInputClientEngine::SelectByRange(napi_env env, napi_callback_info info) in SelectByRange() function in OHOS::MiscServices::JsTextInputClientEngine
615 int32_t code = InputMethodAbility::GetInstance()->SelectByRange(ctxt->start, ctxt->end); in SelectByRange()
646 int32_t ret = InputMethodAbility::GetInstance()->SelectByRange(ctxt->start, ctxt->end); in SelectByRangeSync()
H A Djs_text_input_client_engine.h378 static napi_value SelectByRange(napi_env env, napi_callback_info info);
/ohos5.0/base/inputmethod/imf/interfaces/inner_api/inputmethod_controller/include/
H A Dinput_method_controller.h617 void SelectByRange(int32_t start, int32_t end);
/ohos5.0/base/inputmethod/imf/frameworks/native/inputmethod_ability/src/
H A Dinput_method_ability.cpp702 int32_t InputMethodAbility::SelectByRange(int32_t start, int32_t end) in SelectByRange() function in OHOS::MiscServices::InputMethodAbility
714 return dataChannel->SelectByRange(start, end); in SelectByRange()