Searched refs:InputMethod_PrivateCommand (Results 1 - 9 of 9) sorted by relevance
/base/inputmethod/imf/interfaces/kits/c/ |
H A D | inputmethod_private_command_capi.h | 45 * @brief Define the InputMethod_PrivateCommand structure type. 51 typedef struct InputMethod_PrivateCommand InputMethod_PrivateCommand; typedef 54 * @brief Create a new {@link InputMethod_PrivateCommand} instance. 58 * @return If the creation succeeds, a pointer to the newly created {@link InputMethod_PrivateCommand} 62 InputMethod_PrivateCommand *OH_PrivateCommand_Create(char key[], size_t keyLength); 64 * @brief Destroy a {@link InputMethod_PrivateCommand} instance. 66 * @param command Represents a pointer to an {@link InputMethod_PrivateCommand} instance which will be destroyed. 69 void OH_PrivateCommand_Destroy(InputMethod_PrivateCommand *command); 71 * @brief Set key value into {@link InputMethod_PrivateCommand} [all...] |
H A D | inputmethod_inputmethod_proxy_capi.h | 155 * @param privateCommand The private commands, which is defined in {@link InputMethod_PrivateCommand}. Max size 32KB. 168 InputMethod_InputMethodProxy *inputMethodProxy, InputMethod_PrivateCommand *privateCommand[], size_t size);
|
H A D | inputmethod_text_editor_proxy_capi.h | 231 InputMethod_TextEditorProxy *textEditorProxy, InputMethod_PrivateCommand *privateCommand[], size_t size);
|
/base/inputmethod/imf/frameworks/ndk/src/ |
H A D | inputmethod_private_command_capi.cpp | 21 InputMethod_PrivateCommand *OH_PrivateCommand_Create(char key[], size_t keyLength) in OH_PrivateCommand_Create() 23 return new InputMethod_PrivateCommand({ std::string(key, keyLength), false }); in OH_PrivateCommand_Create() 25 void OH_PrivateCommand_Destroy(InputMethod_PrivateCommand *command) in OH_PrivateCommand_Destroy() 33 InputMethod_ErrorCode OH_PrivateCommand_SetKey(InputMethod_PrivateCommand *command, char key[], size_t keyLength) in OH_PrivateCommand_SetKey() 46 InputMethod_ErrorCode OH_PrivateCommand_SetBoolValue(InputMethod_PrivateCommand *command, bool value) in OH_PrivateCommand_SetBoolValue() 55 InputMethod_ErrorCode OH_PrivateCommand_SetIntValue(InputMethod_PrivateCommand *command, int32_t value) in OH_PrivateCommand_SetIntValue() 65 InputMethod_PrivateCommand *command, char value[], size_t valueLength) in OH_PrivateCommand_SetStrValue() 79 InputMethod_ErrorCode OH_PrivateCommand_GetKey(InputMethod_PrivateCommand *command, const char **key, size_t *keyLength) in OH_PrivateCommand_GetKey() 99 InputMethod_PrivateCommand *command, InputMethod_CommandValueType *type) in OH_PrivateCommand_GetValueType() 123 InputMethod_ErrorCode OH_PrivateCommand_GetBoolValue(InputMethod_PrivateCommand *comman [all...] |
H A D | native_text_changed_listener.cpp | 232 InputMethod_PrivateCommand **command = new InputMethod_PrivateCommand *[privateCommand.size()]; in ReceivePrivateCommand() 240 command[index] = new InputMethod_PrivateCommand(); in ReceivePrivateCommand()
|
H A D | inputmethod_inputmethod_proxy_capi.cpp | 91 InputMethod_InputMethodProxy *inputMethodProxy, InputMethod_PrivateCommand *privateCommand[], size_t size) in OH_InputMethodProxy_SendPrivateCommand()
|
/base/inputmethod/imf/frameworks/ndk/include/ |
H A D | native_inputmethod_types.h | 21 struct InputMethod_PrivateCommand { struct
|
/base/inputmethod/imf/test/unittest/cpp_test/src/ |
H A D | inputmethod_controller_capi_test.cpp | 163 InputMethod_TextEditorProxy *proxy, InputMethod_PrivateCommand *privateCommand[], size_t size) in ReceivePrivateCommandFunc() 1150 InputMethod_PrivateCommand *command = OH_PrivateCommand_Create(key, keyLength); in HWTEST_F() 1194 InputMethod_PrivateCommand *command = OH_PrivateCommand_Create(key, keyLength); in HWTEST_F() 1212 InputMethod_PrivateCommand *command = OH_PrivateCommand_Create(key, keyLength); in HWTEST_F() 1233 InputMethod_PrivateCommand *command = OH_PrivateCommand_Create(key, keyLength); in HWTEST_F() 1250 InputMethod_PrivateCommand *command = OH_PrivateCommand_Create(key, keyLength); in HWTEST_F() 1274 InputMethod_PrivateCommand *command = OH_PrivateCommand_Create(key, keyLength); in HWTEST_F() 1298 InputMethod_PrivateCommand *command = OH_PrivateCommand_Create(key, keyLength); in HWTEST_F() 1421 InputMethod_PrivateCommand *privateCommand[] = { OH_PrivateCommand_Create(key, keyLength), in HWTEST_F()
|
H A D | native_text_changed_listener_test.cpp | 98 InputMethod_TextEditorProxy *proxy, InputMethod_PrivateCommand *privateCommand[], size_t size) in ReceivePrivateCommand()
|
Completed in 7 milliseconds