/base/inputmethod/imf/test/fuzztest/inputmethodcontroller_fuzzer/ |
H A D | inputmethodcontroller_fuzzer.cpp | 37 imc->ListInputMethod(properties); in TestListInputMethod() 38 imc->ListInputMethod(false, properties); in TestListInputMethod() 39 imc->ListInputMethod(true, properties); in TestListInputMethod()
|
/base/inputmethod/imf/test/unittest/cpp_test/src/ |
H A D | input_method_switch_test.cpp | 285 * @tc.desc: IMC ListInputMethod 294 auto ret = imc_->ListInputMethod(properties); in HWTEST_F() 312 * @tc.desc: IMC ListInputMethod 321 auto ret = imc_->ListInputMethod(false, disableProperties); in HWTEST_F() 328 * @tc.desc: IMC ListInputMethod 338 auto ret = imc_->ListInputMethod(true, enableProperties); in HWTEST_F() 478 imc_->ListInputMethod(props); in HWTEST_F()
|
H A D | input_method_private_member_test.cpp | 475 InputMethodController::GetInstance()->ListInputMethod(props); in HWTEST_F() 498 InputMethodController::GetInstance()->ListInputMethod(props); in HWTEST_F() 621 auto ret = ImeInfoInquirer::GetInstance().ListInputMethod(60, InputMethodStatus(10), props, false); in HWTEST_F()
|
/base/inputmethod/imf/frameworks/native/inputmethod_controller/include/ |
H A D | input_method_system_ability_proxy.h | 60 int32_t ListInputMethod(InputMethodStatus status, std::vector<Property> &props) override;
|
/base/inputmethod/imf/services/include/ |
H A D | i_input_method_system_ability.h | 58 virtual int32_t ListInputMethod(InputMethodStatus status, std::vector<Property> &props) = 0;
|
H A D | ime_info_inquirer.h | 92 int32_t ListInputMethod(int32_t userId, InputMethodStatus status, std::vector<Property> &props, bool enableOn); 128 int32_t ListInputMethod(const int32_t userId, std::vector<Property> &props);
|
H A D | input_method_system_ability.h | 66 int32_t ListInputMethod(InputMethodStatus status, std::vector<Property> &props) override;
|
/base/inputmethod/imf/frameworks/cj/src/ |
H A D | input_method_ffi.cpp | 211 int32_t errCode = ctrl->ListInputMethod(enable, properties); in FfiInputMethodSettingGetInputMethods() 242 int32_t errCode = ctrl->ListInputMethod(properties); in FfiInputMethodSettingGetAllInputMethods()
|
/base/inputmethod/imf/frameworks/js/napi/inputmethodclient/ |
H A D | js_get_input_method_setting.cpp | 59 DECLARE_NAPI_FUNCTION("listInputMethod", ListInputMethod), in Init() 193 napi_value JsGetInputMethodSetting::ListInputMethod(napi_env env, napi_callback_info info) in ListInputMethod() function in OHOS::MiscServices::JsGetInputMethodSetting 195 IMSA_HILOGD("start ListInputMethod"); in ListInputMethod() 206 int32_t errCode = InputMethodController::GetInstance()->ListInputMethod(ctxt->properties); in ListInputMethod() 208 IMSA_HILOGI("exec ListInputMethod success"); in ListInputMethod() 240 InputMethodController::GetInstance()->ListInputMethod(ctxt->inputMethodStatus == ENABLE, ctxt->properties); in GetInputMethods() 269 int32_t ret = InputMethodController::GetInstance()->ListInputMethod(enable, properties); in GetInputMethodsSync() 289 int32_t errCode = InputMethodController::GetInstance()->ListInputMethod(ctxt->properties); in GetAllInputMethods() 308 int32_t ret = InputMethodController::GetInstance()->ListInputMethod(properties); in GetAllInputMethodsSync()
|
H A D | js_get_input_method_setting.h | 104 static napi_value ListInputMethod(napi_env env, napi_callback_info info);
|
/base/inputmethod/imf/interfaces/inner_api/inputmethod_controller/include/ |
H A D | input_method_controller.h | 283 IMF_API int32_t ListInputMethod(std::vector<Property> &props); 295 IMF_API int32_t ListInputMethod(bool enable, std::vector<Property> &props);
|
/base/inputmethod/imf/services/src/ |
H A D | ime_info_inquirer.cpp | 254 int32_t ImeInfoInquirer::ListInputMethod(int32_t userId, InputMethodStatus status, std::vector<Property> &props, in ListInputMethod() function in OHOS::MiscServices::ImeInfoInquirer 259 return ListInputMethod(userId, props); in ListInputMethod() 270 int32_t ImeInfoInquirer::ListInputMethod(const int32_t userId, std::vector<Property> &props) in ListInputMethod() function in OHOS::MiscServices::ImeInfoInquirer 308 int32_t ret = ListInputMethod(userId, props); in ListEnabledInputMethod() 340 auto ret = ListInputMethod(userId, props); in ListDisabledInputMethod()
|
H A D | input_method_system_ability_stub.cpp | 257 auto ret = ListInputMethod(InputMethodStatus(status), properties); in ListInputMethodOnRemote()
|
H A D | input_method_system_ability.cpp | 939 int32_t InputMethodSystemAbility::ListInputMethod(InputMethodStatus status, std::vector<Property> &props) in ListInputMethod() function in OHOS::MiscServices::InputMethodSystemAbility 941 return ImeInfoInquirer::GetInstance().ListInputMethod(GetCallingUserId(), status, props, enableImeOn_.load()); in ListInputMethod()
|
/base/inputmethod/imf/frameworks/native/inputmethod_controller/src/ |
H A D | input_method_controller.cpp | 412 return proxy->ListInputMethod(status, props); in ListInputMethodCommon() 415 int32_t InputMethodController::ListInputMethod(std::vector<Property> &props) in ListInputMethod() function in OHOS::MiscServices::InputMethodController 421 int32_t InputMethodController::ListInputMethod(bool enable, std::vector<Property> &props) in ListInputMethod() function in OHOS::MiscServices::InputMethodController
|
H A D | input_method_system_ability_proxy.cpp | 188 int32_t InputMethodSystemAbilityProxy::ListInputMethod(InputMethodStatus status, std::vector<Property> &props)
|