Home
last modified time | relevance | path

Searched refs:GetTextAfterCursor (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/base/inputmethod/imf/frameworks/native/inputmethod_controller/include/
H A Di_input_data_channel.h65 virtual int32_t GetTextAfterCursor(int32_t number, std::u16string &text) = 0;
H A Dinput_data_channel_proxy.h42 int32_t GetTextAfterCursor(int32_t number, std::u16string &text) override;
H A Dinput_data_channel_stub.h44 int32_t GetTextAfterCursor(int32_t number, std::u16string &text) override;
/ohos5.0/base/inputmethod/imf/frameworks/native/inputmethod_controller/src/
H A Dinput_data_channel_stub.cpp99 return ITypesUtil::Marshal(reply, GetTextAfterCursor(length, text), text) ? ErrorCode::NO_ERROR in GetTextAfterCursorOnRemote()
263 int32_t InputDataChannelStub::GetTextAfterCursor(int32_t number, std::u16string &text) in GetTextAfterCursor() function in OHOS::MiscServices::InputDataChannelStub
H A Dinput_data_channel_proxy.cpp54 int32_t InputDataChannelProxy::GetTextAfterCursor(int32_t number, std::u16string &text) in GetTextAfterCursor() function in OHOS::MiscServices::InputDataChannelProxy
/ohos5.0/base/inputmethod/imf/test/fuzztest/inputmethodability_fuzzer/
H A Dinputmethodability_fuzzer.cpp106 ability->GetTextAfterCursor(fuzzedInt32, text); in TestGetTextAfterCursor()
/ohos5.0/base/inputmethod/imf/frameworks/native/inputmethod_ability/include/
H A Dinput_method_ability.h68 int32_t GetTextAfterCursor(int32_t number, std::u16string &text);
/ohos5.0/base/inputmethod/imf/test/unittest/cpp_test/src/
H A Dinput_method_ability_exception_test.cpp192 auto ret = inputMethodAbility_->GetTextAfterCursor(8, text);
H A Dinput_method_ability_test.cpp569 auto ret = inputMethodAbility_->GetTextAfterCursor(number, text);
/ohos5.0/base/inputmethod/imf/frameworks/native/inputmethod_ability/src/
H A Dinput_method_ability.cpp679 int32_t InputMethodAbility::GetTextAfterCursor(int32_t number, std::u16string &text) in GetTextAfterCursor() function in OHOS::MiscServices::InputMethodAbility
688 return channel->GetTextAfterCursor(number, text); in GetTextAfterCursor()
/ohos5.0/base/inputmethod/imf/frameworks/js/napi/inputmethodability/
H A Djs_text_input_client_engine.cpp515 int32_t ret = InputMethodAbility::GetInstance()->GetTextAfterCursor(length, text); in GetBackwardSync()
543 int32_t code = InputMethodAbility::GetInstance()->GetTextAfterCursor(ctxt->length, temp); in GetBackward()