Home
last modified time | relevance | path

Searched refs:oldEnd (Results 1 – 17 of 17) sorted by relevance

/base/inputmethod/imf/frameworks/native/inputmethod_ability/src/
Dinput_method_agent_proxy.cpp48 std::u16string text, int32_t oldBegin, int32_t oldEnd, int32_t newBegin, int32_t newEnd) in OnSelectionChange() argument
50 …auto ret = SendRequest(ON_SELECTION_CHANGE, [&text, oldBegin, oldEnd, newBegin, newEnd](MessagePar… in OnSelectionChange()
51 return ITypesUtil::Marshal(data, text, oldBegin, oldEnd, newBegin, newEnd); in OnSelectionChange()
Dinput_method_agent_stub.cpp66 int32_t oldEnd = data.ReadInt32(); in OnRemoteRequest() local
69 OnSelectionChange(text, oldBegin, oldEnd, newBegin, newEnd); in OnRemoteRequest()
126 std::u16string text, int32_t oldBegin, int32_t oldEnd, int32_t newBegin, int32_t newEnd) in OnSelectionChange() argument
135 data->WriteInt32(oldEnd); in OnSelectionChange()
Dinput_method_ability.cpp331 int32_t oldEnd = data->ReadInt32(); in OnSelectionChange() local
341 kdListener_->OnSelectionChange(oldBegin, oldEnd, newBegin, newEnd); in OnSelectionChange()
415 … kdListener_->OnSelectionChange(textConfig.textSelection.oldBegin, textConfig.textSelection.oldEnd, in OnTextConfigChange()
/base/inputmethod/imf/frameworks/native/inputmethod_ability/include/
Dkeyboard_listener.h29 …virtual void OnSelectionChange(int32_t oldBegin, int32_t oldEnd, int32_t newBegin, int32_t newEnd)…
Di_input_method_agent.h45 … std::u16string text, int32_t oldBegin, int32_t oldEnd, int32_t newBegin, int32_t newEnd) = 0;
Dinput_method_agent_stub.h35 … std::u16string text, int32_t oldBegin, int32_t oldEnd, int32_t newBegin, int32_t newEnd) override;
Dinput_method_agent_proxy.h42 … std::u16string text, int32_t oldBegin, int32_t oldEnd, int32_t newBegin, int32_t newEnd) override;
/base/inputmethod/imf/frameworks/js/napi/inputmethodability/
Djs_keyboard_delegate_setting.h47 …void OnSelectionChange(int32_t oldBegin, int32_t oldEnd, int32_t newBegin, int32_t newEnd) overrid…
70 int32_t oldEnd = 0; member
Djs_keyboard_delegate_setting.cpp425 void JsKeyboardDelegateSetting::OnSelectionChange(int32_t oldBegin, int32_t oldEnd, int32_t newBegi… in OnSelectionChange() argument
428 SelectionPara para{ oldBegin, oldEnd, newBegin, newEnd }; in OnSelectionChange()
432 entry.selPara.oldEnd = para.oldEnd; in OnSelectionChange()
455 napi_create_int32(env, entry->selPara.oldEnd, &args[1]); in OnSelectionChange()
/base/inputmethod/imf/frameworks/native/inputmethod_controller/include/
Dinput_method_utils.h123 int32_t oldEnd = INVALID_VALUE; member
/base/inputmethod/imf/frameworks/native/inputmethod_controller/src/
Ditypes_util.cpp192 …if (!Marshal(data, input.textSelection.oldBegin, input.textSelection.oldEnd, input.textSelection.n… in Marshalling()
215 if (!Unmarshal(data, output.textSelection.oldBegin, output.textSelection.oldEnd, in Unmarshalling()
Dinput_method_controller.cpp893 config.textSelection.oldEnd = selectOldEnd_; in GetTextConfig()
/base/inputmethod/imf/test/unittest/cpp_test/src/
Dinput_method_attach_test.cpp220 EXPECT_EQ(textConfig.textSelection.oldEnd, 0);
305 EXPECT_EQ(totalConfig.textSelection.oldEnd, 0);
386 EXPECT_EQ(totalConfig.textSelection.oldEnd, 0);
535 EXPECT_EQ(totalConfig.textSelection.oldEnd, 0);
Dinput_method_editor_test.cpp57 …void OnSelectionChange(int32_t oldBegin, int32_t oldEnd, int32_t newBegin, int32_t newEnd) overrid…
80 void KeyboardListenerImpl::OnSelectionChange(int32_t oldBegin, int32_t oldEnd, int32_t newBegin, in… in OnSelectionChange() argument
Dinput_method_controller_test.cpp154 …void OnSelectionChange(int32_t oldBegin, int32_t oldEnd, int32_t newBegin, int32_t newEnd) override in OnSelectionChange() argument
157 oldBegin, oldEnd, newBegin, newBegin); in OnSelectionChange()
159 oldEnd_ = oldEnd; in OnSelectionChange()
/base/inputmethod/imf/test/fuzztest/inputmethodability_fuzzer/
Dinputmethodability_fuzzer.cpp35 void OnSelectionChange(int32_t oldBegin, int32_t oldEnd, int32_t newBegin, int32_t newEnd) {} in OnSelectionChange() argument
/base/update/updater/services/diffpatch/diff/
Dblocks_diff.cpp648 … BlockBuffer oldEnd = {oldInfo.buffer + suffixArray_[end], oldInfo.length - suffixArray_[end]}; in Search() local
650 y = MatchLength(oldEnd, newInfo); in Search()