Home
last modified time | relevance | path

Searched refs:insertTextFunc (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/base/inputmethod/imf/frameworks/ndk/src/
H A Dinputmethod_texteditor_proxy_capi.cpp49 InputMethod_TextEditorProxy *proxy, OH_TextEditorProxy_InsertTextFunc insertTextFunc) in OH_TextEditorProxy_SetInsertTextFunc() argument
56 if (insertTextFunc == nullptr) { in OH_TextEditorProxy_SetInsertTextFunc()
60 proxy->insertTextFunc = insertTextFunc; in OH_TextEditorProxy_SetInsertTextFunc()
298 InputMethod_TextEditorProxy *proxy, OH_TextEditorProxy_InsertTextFunc *insertTextFunc) in OH_TextEditorProxy_GetInsertTextFunc() argument
305 if (insertTextFunc == nullptr) { in OH_TextEditorProxy_GetInsertTextFunc()
310 *insertTextFunc = proxy->insertTextFunc; in OH_TextEditorProxy_GetInsertTextFunc()
H A Dnative_text_changed_listener.cpp28 if (textEditor_->insertTextFunc == nullptr) { in InsertText()
33 textEditor_->insertTextFunc(textEditor_, text.c_str(), text.length()); in InsertText()
H A Dinputmethod_controller_capi.cpp104 CHECK_MEMBER_NULL(textEditor, insertTextFunc); in IsValidTextEditorProxy()
/ohos5.0/base/inputmethod/imf/interfaces/kits/c/
H A Dinputmethod_text_editor_proxy_capi.h301 InputMethod_TextEditorProxy *proxy, OH_TextEditorProxy_InsertTextFunc insertTextFunc);
507 InputMethod_TextEditorProxy *proxy, OH_TextEditorProxy_InsertTextFunc *insertTextFunc);
/ohos5.0/base/inputmethod/imf/frameworks/ndk/include/
H A Dnative_inputmethod_types.h50 OH_TextEditorProxy_InsertTextFunc insertTextFunc; member
/ohos5.0/docs/zh-cn/application-dev/reference/apis-ime-kit/
H A D_input_method.md130 …_TextEditorProxy_InsertTextFunc](#oh_texteditorproxy_inserttextfunc) insertTextFunc) | 将函数[OH_Text…
145 …extEditorProxy_InsertTextFunc](#oh_texteditorproxy_inserttextfunc) \*insertTextFunc) | 从[InputMeth…
2539 …TextFunc (InputMethod_TextEditorProxy * proxy, OH_TextEditorProxy_InsertTextFunc * insertTextFunc )
2553 | insertTextFunc | 表示从proxy获取到的函数[OH_TextEditorProxy_InsertTextFunc](#oh_texteditorproxy_inserttext…
2989 …rtTextFunc (InputMethod_TextEditorProxy * proxy, OH_TextEditorProxy_InsertTextFunc insertTextFunc )
3003 | insertTextFunc | 表示被设置到proxy的函数[OH_TextEditorProxy_InsertTextFunc](#oh_texteditorproxy_inserttext…
H A Dinputmethod__text__editor__proxy__capi_8h.md49 …_InsertTextFunc](_input_method.md#oh_texteditorproxy_inserttextfunc) insertTextFunc) | 将函数[OH_Text…
64 …nsertTextFunc](_input_method.md#oh_texteditorproxy_inserttextfunc) \*insertTextFunc) | 从[InputMeth…
/ohos5.0/docs/en/application-dev/reference/apis-ime-kit/
H A Dinputmethod__text__editor__proxy__capi_8h.md49 …_InsertTextFunc](_input_method.md#oh_texteditorproxy_inserttextfunc) insertTextFunc) | Sets the [O…
64 …nsertTextFunc](_input_method.md#oh_texteditorproxy_inserttextfunc) \*insertTextFunc) | Obtains the…
H A D_input_method.md130 …_TextEditorProxy_InsertTextFunc](#oh_texteditorproxy_inserttextfunc) insertTextFunc) | Sets the [O…
145 …extEditorProxy_InsertTextFunc](#oh_texteditorproxy_inserttextfunc) \*insertTextFunc) | Obtains the…
2539 …TextFunc (InputMethod_TextEditorProxy * proxy, OH_TextEditorProxy_InsertTextFunc * insertTextFunc )
2553 | insertTextFunc | Function [OH_TextEditorProxy_InsertTextFunc](#oh_texteditorproxy_inserttextfunc)…
2989 …rtTextFunc (InputMethod_TextEditorProxy * proxy, OH_TextEditorProxy_InsertTextFunc insertTextFunc )
3003 | insertTextFunc | Function [OH_TextEditorProxy_InsertTextFunc](#oh_texteditorproxy_inserttextfunc)…
/ohos5.0/base/inputmethod/imf/test/unittest/cpp_test/src/
H A Dinputmethod_controller_capi_test.cpp198 OH_TextEditorProxy_InsertTextFunc insertTextFunc = nullptr; in TestGetTextEditorProxyMember() local
199 EXPECT_EQ(IME_ERR_OK, OH_TextEditorProxy_GetInsertTextFunc(textEditorProxy, &insertTextFunc)); in TestGetTextEditorProxyMember()
200 EXPECT_EQ(InsertTextFunc, insertTextFunc); in TestGetTextEditorProxyMember()