/base/inputmethod/imf/test/unittest/cpp_test/src/ |
H A D | input_method_ability_test.cpp | 604 auto ret = inputMethodAbility_->CreatePanel(nullptr, panelInfo, softKeyboardPanel1); in HWTEST_F() 609 ret = inputMethodAbility_->CreatePanel(nullptr, panelInfo, softKeyboardPanel2); in HWTEST_F() 632 auto ret = inputMethodAbility_->CreatePanel(nullptr, panelInfo, statusBar1); in HWTEST_F() 637 ret = inputMethodAbility_->CreatePanel(nullptr, panelInfo, statusBar2); in HWTEST_F() 661 auto ret = inputMethodAbility_->CreatePanel(nullptr, panelInfo1, softKeyboardPanel); in HWTEST_F() 667 ret = inputMethodAbility_->CreatePanel(nullptr, panelInfo2, statusBar); in HWTEST_F() 691 auto ret = inputMethodAbility_->CreatePanel(nullptr, panelInfo1, inputMethodPanel); in HWTEST_F() 699 ret = inputMethodAbility_->CreatePanel(nullptr, panelInfo2, inputMethodPanel); in HWTEST_F() 707 ret = inputMethodAbility_->CreatePanel(nullptr, panelInfo1, inputMethodPanel); in HWTEST_F() 727 auto ret = inputMethodAbility_->CreatePanel(nullpt in HWTEST_F() [all...] |
H A D | input_method_panel_test.cpp | 68 static std::shared_ptr<InputMethodPanel> CreatePanel(); 258 std::shared_ptr<InputMethodPanel> InputMethodPanelTest::CreatePanel() in CreatePanel() function in OHOS::MiscServices::InputMethodPanelTest 263 auto ret = inputMethodPanel->CreatePanel(nullptr, panelInfo); in CreatePanel() 279 auto ret = ima_->CreatePanel(nullptr, info, panel); in ImaCreatePanel() 423 * @tc.desc: Test CreatePanel. 432 auto ret = inputMethodPanel->CreatePanel(nullptr, panelInfo); in HWTEST_F() 447 // not CreatePanel, DestroyPanel failed in HWTEST_F() 461 // not CreatePanel, Resize failed in HWTEST_F() 467 ret = inputMethodPanel->CreatePanel(nullptr, panelInfo); in HWTEST_F() 502 // not CreatePanel, Resiz in HWTEST_F() [all...] |
/base/inputmethod/imf/frameworks/js/napi/inputmethodability/ |
H A D | js_input_method_engine_setting.h | 48 static napi_value CreatePanel(napi_env env, napi_callback_info info);
|
H A D | js_input_method_engine_setting.cpp | 98 DECLARE_NAPI_FUNCTION("createPanel", CreatePanel), in InitProperty() 380 napi_value JsInputMethodEngineSetting::CreatePanel(napi_env env, napi_callback_info info) in CreatePanel() function in OHOS::MiscServices::JsInputMethodEngineSetting 403 auto ret = InputMethodAbility::GetInstance()->CreatePanel(ctxt->context, ctxt->panelInfo, ctxt->panel); in CreatePanel() 405 CHECK_RETURN_VOID(ret == ErrorCode::NO_ERROR, "JsInputMethodEngineSetting CreatePanel failed!"); in CreatePanel()
|
/base/inputmethod/imf/frameworks/native/inputmethod_ability/include/ |
H A D | input_method_panel.h | 72 int32_t CreatePanel(const std::shared_ptr<AbilityRuntime::Context> &context, const PanelInfo &panelInfo);
|
H A D | input_method_ability.h | 72 int32_t CreatePanel(const std::shared_ptr<AbilityRuntime::Context> &context, const PanelInfo &panelInfo,
|
/base/inputmethod/imf/frameworks/native/inputmethod_ability/src/ |
H A D | input_method_ability.cpp | 811 int32_t InputMethodAbility::CreatePanel(const std::shared_ptr<AbilityRuntime::Context> &context, in CreatePanel() function in OHOS::MiscServices::InputMethodAbility 823 auto ret = inputMethodPanel->CreatePanel(context, panelInfo); in CreatePanel()
|
H A D | input_method_panel.cpp | 45 int32_t InputMethodPanel::CreatePanel(const std::shared_ptr<AbilityRuntime::Context> &context, in CreatePanel() function in OHOS::MiscServices::InputMethodPanel
|