Searched refs:showKeyboard (Results 1 - 11 of 11) sorted by relevance
/base/inputmethod/imf/frameworks/ndk/src/ |
H A D | inputmethod_attach_options_capi.cpp | 22 InputMethod_AttachOptions *OH_AttachOptions_Create(bool showKeyboard) in OH_AttachOptions_Create() argument 24 return new InputMethod_AttachOptions({ showKeyboard }); in OH_AttachOptions_Create() 34 InputMethod_ErrorCode OH_AttachOptions_IsShowKeyboard(InputMethod_AttachOptions *options, bool *showKeyboard) in OH_AttachOptions_IsShowKeyboard() argument 41 if (showKeyboard == nullptr) { in OH_AttachOptions_IsShowKeyboard() 42 IMSA_HILOGE("showKeyboard is nullptr"); in OH_AttachOptions_IsShowKeyboard() 46 *showKeyboard = options->showKeyboard; in OH_AttachOptions_IsShowKeyboard()
|
H A D | inputmethod_controller_capi.cpp | 174 int32_t err = controller->Attach(listener, options->showKeyboard, textConfig); in OH_InputMethodController_Attach()
|
/base/inputmethod/imf/interfaces/kits/c/ |
H A D | inputmethod_attach_options_capi.h | 53 * @param showKeyboard Represents whether to show the keyboard. 58 InputMethod_AttachOptions *OH_AttachOptions_Create(bool showKeyboard); 67 * @brief Get showKeyboard value from {@link InputMethod_AttachOptions}. 70 * @param showKeyboard Represents showKeyboard value. 79 InputMethod_ErrorCode OH_AttachOptions_IsShowKeyboard(InputMethod_AttachOptions *options, bool *showKeyboard);
|
/base/inputmethod/imf/frameworks/ndk/include/ |
H A D | native_inputmethod_types.h | 67 bool showKeyboard; member
|
/base/inputmethod/imf/frameworks/cj/include/ |
H A D | input_method_ffi.h | 40 FFI_EXPORT int32_t FfiInputMethodControllerAttach(bool showKeyboard, CTextConfig txtCfg);
|
H A D | cj_input_method_controller.h | 32 static int32_t Attach(const CTextConfig &txtCfg, bool showKeyboard);
|
/base/inputmethod/imf/frameworks/cj/src/ |
H A D | input_method_ffi.cpp | 306 int32_t FfiInputMethodControllerAttach(bool showKeyboard, CTextConfig txtCfg) in FfiInputMethodControllerAttach() argument 308 return CjInputMethodController::Attach(txtCfg, showKeyboard); in FfiInputMethodControllerAttach()
|
H A D | cj_input_method_controller.cpp | 57 int32_t CjInputMethodController::Attach(const CTextConfig &txtCfg, bool showKeyboard) in Attach() argument 86 return controller->Attach(textListener, showKeyboard, textCfg); in Attach()
|
/base/inputmethod/imf/frameworks/js/napi/inputmethodclient/ |
H A D | js_get_input_method_controller.h | 51 bool showKeyboard = false; member
|
H A D | js_get_input_method_controller.cpp | 540 PARAM_CHECK_RETURN(env, JsUtil::GetValue(env, argv[0], ctxt->showKeyboard), in Attach() 541 "showKeyboard covert failed, type must be boolean!", TYPE_NONE, napi_generic_failure); in Attach() 549 InputMethodController::GetInstance()->Attach(ctxt->textListener, ctxt->showKeyboard, ctxt->textConfig); in Attach()
|
/base/inputmethod/imf/test/unittest/cpp_test/src/ |
H A D | inputmethod_controller_capi_test.cpp | 279 bool showKeyboard = false; in HWTEST_F() local 280 EXPECT_EQ(IME_ERR_OK, OH_AttachOptions_IsShowKeyboard(options, &showKeyboard)); in HWTEST_F() 281 EXPECT_TRUE(showKeyboard); in HWTEST_F()
|
Completed in 12 milliseconds