Home
last modified time | relevance | path

Searched refs:showKeyboard (Results 1 - 11 of 11) sorted by relevance

/base/inputmethod/imf/frameworks/ndk/src/
H A Dinputmethod_attach_options_capi.cpp22 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 Dinputmethod_controller_capi.cpp174 int32_t err = controller->Attach(listener, options->showKeyboard, textConfig); in OH_InputMethodController_Attach()
/base/inputmethod/imf/interfaces/kits/c/
H A Dinputmethod_attach_options_capi.h53 * @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 Dnative_inputmethod_types.h67 bool showKeyboard; member
/base/inputmethod/imf/frameworks/cj/include/
H A Dinput_method_ffi.h40 FFI_EXPORT int32_t FfiInputMethodControllerAttach(bool showKeyboard, CTextConfig txtCfg);
H A Dcj_input_method_controller.h32 static int32_t Attach(const CTextConfig &txtCfg, bool showKeyboard);
/base/inputmethod/imf/frameworks/cj/src/
H A Dinput_method_ffi.cpp306 int32_t FfiInputMethodControllerAttach(bool showKeyboard, CTextConfig txtCfg) in FfiInputMethodControllerAttach() argument
308 return CjInputMethodController::Attach(txtCfg, showKeyboard); in FfiInputMethodControllerAttach()
H A Dcj_input_method_controller.cpp57 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 Djs_get_input_method_controller.h51 bool showKeyboard = false; member
H A Djs_get_input_method_controller.cpp540 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 Dinputmethod_controller_capi_test.cpp279 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