Searched refs:ImeType (Results 1 – 5 of 5) sorted by relevance
/ohos5.0/base/inputmethod/imf/services/src/ |
H A D | peruser_session.cpp | 287 if (type == ImeType::IME) { in OnImeDied() 556 auto imeType = IsProxyImeEnable() ? ImeType::PROXY_IME : ImeType::IME; in OnStartInput() 590 if (type == ImeType::IME) { in BindClientWithIme() 676 auto imeType = ImeType::IME; in OnSetCoreAndAgent() 1231 bool PerUserSession::IsImeStartInBind(ImeType bindImeType, ImeType startImeType) in IsImeStartInBind() 1233 return startImeType == ImeType::IME && bindImeType == ImeType::IME; in IsImeStartInBind() 1236 bool PerUserSession::IsProxyImeStartInBind(ImeType bindImeType, ImeType startImeType) in IsProxyImeStartInBind() 1238 return startImeType == ImeType::PROXY_IME && bindImeType == ImeType::PROXY_IME; in IsProxyImeStartInBind() 1241 bool PerUserSession::IsProxyImeStartInImeBind(ImeType bindImeType, ImeType startImeType) in IsProxyImeStartInImeBind() 1243 return startImeType == ImeType::PROXY_IME && bindImeType == ImeType::IME; in IsProxyImeStartInImeBind() [all …]
|
H A D | input_method_system_ability.cpp | 1720 auto imeData = session->GetReadyImeData(ImeType::IME); in HandleUserSwitched() 1860 auto imeData = session->GetImeData(ImeType::IME); in IsCurrentIme()
|
/ohos5.0/base/inputmethod/imf/services/include/ |
H A D | peruser_session.h | 143 std::shared_ptr<ImeData> GetReadyImeData(ImeType type); 144 std::shared_ptr<ImeData> GetImeData(ImeType type); 184 void OnImeDied(const sptr<IInputMethodCore> &remote, ImeType type); 201 void RemoveImeData(ImeType type, bool isImeDied); 202 int32_t RemoveIme(const sptr<IInputMethodCore> &core, ImeType type); 203 std::shared_ptr<ImeData> GetValidIme(ImeType type); 226 bool IsImeStartInBind(ImeType bindImeType, ImeType startImeType); 227 bool IsProxyImeStartInBind(ImeType bindImeType, ImeType startImeType); 228 bool IsProxyImeStartInImeBind(ImeType bindImeType, ImeType startImeType); 229 bool IsImeBindChanged(ImeType bindImeType); [all …]
|
/ohos5.0/base/inputmethod/imf/frameworks/native/inputmethod_controller/include/ |
H A D | input_client_info.h | 34 enum class ImeType : int32_t { IME = 0, PROXY_IME, NONE }; enum 43 ImeType bindImeType{ ImeType::NONE }; // type of the ime client bind
|
/ohos5.0/base/inputmethod/imf/test/unittest/cpp_test/src/ |
H A D | input_method_private_member_test.cpp | 313 userSession->OnImeDied(nullptr, ImeType::IME); 316 int32_t ret = userSession->RemoveIme(nullptr, ImeType::IME);
|