/base/inputmethod/imf/frameworks/ndk/src/ |
H A D | inputmethod_text_config_capi.cpp | 34 InputMethod_ErrorCode OH_TextConfig_SetInputType(InputMethod_TextConfig *config, InputMethod_TextInputType inputType) in OH_TextConfig_SetInputType() argument 40 config->inputType = inputType; in OH_TextConfig_SetInputType() 85 InputMethod_ErrorCode OH_TextConfig_GetInputType(InputMethod_TextConfig *config, InputMethod_TextInputType *inputType) in OH_TextConfig_GetInputType() argument 91 if (inputType == nullptr) { in OH_TextConfig_GetInputType() 92 IMSA_HILOGE("inputType is nullptr"); in OH_TextConfig_GetInputType() 95 *inputType = config->inputType; in OH_TextConfig_GetInputType()
|
H A D | inputmethod_controller_capi.cpp | 125 .inputPattern = static_cast<InputMethod_TextInputType>(config.inputType), in ConstructTextConfig()
|
/base/inputmethod/imf/services/src/ |
H A D | sys_cfg_parser.cpp | 37 bool SysCfgParser::ParseInputType(std::vector<InputTypeInfo> &inputType) in ParseInputType() argument 46 inputType = inputTypeCfg.inputType; in ParseInputType()
|
/base/inputmethod/imf/interfaces/kits/c/ |
H A D | inputmethod_text_config_capi.h | 75 * @param inputType The text input type of text Editor, which is defined in {@link InputMethod_TextInputType}. 82 InputMethod_ErrorCode OH_TextConfig_SetInputType(InputMethod_TextConfig *config, InputMethod_TextInputType inputType); 138 * @param inputType Represents a pointer to an {@link InputMethod_TextInputType} instance. 146 InputMethod_ErrorCode OH_TextConfig_GetInputType(InputMethod_TextConfig *config, InputMethod_TextInputType *inputType);
|
/base/inputmethod/imf/services/include/ |
H A D | sys_cfg_parser.h | 57 auto ret = GetValue(node, GET_NAME(inputType), typeTemp); 68 std::vector<InputTypeInfo> inputType; member 71 return GetValue(node, GET_NAME(supportedInputTypeList), inputType); 124 static bool ParseInputType(std::vector<InputTypeInfo> &inputType);
|
/base/inputmethod/imf/frameworks/native/inputmethod_controller/include/ |
H A D | sys_panel_status.h | 27 InputType inputType = InputType::NONE; member
|
/base/inputmethod/imf/test/unittest/cpp_test/src/ |
H A D | json_operate_test.cpp | 68 "\"supportedInputTypeList\":[{\"inputType\":0,\"bundleName\":" 70 "\"subtypeId\":\"testSubtypeId\"},{\"inputType\":1,\"bundleName\":" 277 * @tc.desc: parse inputType 288 auto inputType = inputTypeCfg.inputType; in HWTEST_F() local 289 ASSERT_EQ(inputType.size(), 2); in HWTEST_F() 290 EXPECT_EQ(inputType[0].type, InputType::CAMERA_INPUT); in HWTEST_F() 291 EXPECT_EQ(inputType[0].subName, "testSubtypeId"); in HWTEST_F() 292 EXPECT_EQ(inputType[0].bundleName, "testBundleName"); in HWTEST_F() 293 EXPECT_EQ(inputType[ in HWTEST_F() [all...] |
/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webview/ |
H A D | ark_imf_adapter_impl.cpp | 54 void ArkIMFAdapterImpl::ShowCurrentInput(const int32_t& inputType) in ShowCurrentInput() argument 56 real_->ShowCurrentInput((OHOS::NWeb::IMFAdapterTextInputType)inputType); in ShowCurrentInput()
|
H A D | ark_imf_adapter_impl.h | 34 void ShowCurrentInput(const int32_t& inputType) override;
|
/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webcore/ |
H A D | ark_imfadapter_wrapper.cpp | 52 void ArkIMFAdapterWrapper::ShowCurrentInput(const OHOS::NWeb::IMFAdapterTextInputType& inputType) in ShowCurrentInput() argument 54 return ctocpp_->ShowCurrentInput((int32_t)inputType); in ShowCurrentInput()
|
H A D | ark_imfadapter_wrapper.h | 34 void ShowCurrentInput(const OHOS::NWeb::IMFAdapterTextInputType& inputType) override;
|
/base/inputmethod/imf/frameworks/native/inputmethod_ability/src/ |
H A D | input_method_core_proxy.cpp | 55 int32_t InputMethodCoreProxy::OnSetInputType(InputType inputType) 58 [inputType](MessageParcel &data) { return ITypesUtil::Marshal(data, inputType); },
|
H A D | input_method_core_stub.cpp | 162 InputType inputType; in OnSetInputTypeOnRemote() local 163 if (!ITypesUtil::Unmarshal(data, inputType)) { in OnSetInputTypeOnRemote() 164 IMSA_HILOGE("failed to read inputType parcel!"); in OnSetInputTypeOnRemote() 167 InputMethodAbility::GetInstance()->OnSetInputType(inputType); in OnSetInputTypeOnRemote() 261 int32_t InputMethodCoreStub::OnSetInputType(InputType inputType) in OnSetInputType() argument
|
H A D | input_method_ability.cpp | 254 void InputMethodAbility::OnSetInputType(InputType inputType) in OnSetInputType() argument 256 inputType_ = inputType; in OnSetInputType() 257 IMSA_HILOGD("OnSetInputType, inputType = %{public}d", static_cast<int32_t>(inputType)); in OnSetInputType() 925 sysPanelStatus.inputType = inputType_; in NotifyPanelStatus()
|
/base/inputmethod/imf/frameworks/ndk/include/ |
H A D | native_inputmethod_types.h | 38 InputMethod_TextInputType inputType; member
|
/base/inputmethod/imf/frameworks/native/inputmethod_ability/include/ |
H A D | i_input_method_core.h | 68 virtual int32_t OnSetInputType(InputType inputType) = 0;
|
H A D | input_method_core_proxy.h | 48 int32_t OnSetInputType(InputType inputType) override;
|
H A D | input_method_core_stub.h | 49 int32_t OnSetInputType(InputType inputType) override;
|
/base/inputmethod/imf/common/src/ |
H A D | itypes_util.cpp | 317 return data.WriteInt32(static_cast<int32_t>(input.inputType)) && in Marshalling() 325 int32_t inputType = 0; in Unmarshalling() local 326 if (!data.ReadInt32(inputType) || !data.ReadInt32(output.flag) || !data.ReadUint32(output.width) || in Unmarshalling() 330 output.inputType = static_cast<InputType>(inputType); in Unmarshalling()
|
/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/include/ |
H A D | ark_imf_adapter.h | 160 virtual void ShowCurrentInput(const int32_t& inputType) = 0;
|
/base/web/webview/ohos_adapter/inputmethodframework_adapter/include/ |
H A D | imf_adapter_impl.h | 104 void ShowCurrentInput(const IMFAdapterTextInputType& inputType) override;
|
/base/web/webview/ohos_interface/include/ohos_adapter/ |
H A D | imf_adapter.h | 187 virtual void ShowCurrentInput(const IMFAdapterTextInputType& inputType) = 0;
|
/base/security/device_auth/services/legacy/group_manager/inc/ |
H A D | group_operation_common.h | 38 int32_t AssertGroupTypeMatch(int32_t inputType, int32_t targetType);
|
/base/web/webview/ohos_adapter/inputmethodframework_adapter/src/ |
H A D | imf_adapter_impl.cpp | 334 void IMFAdapterImpl::ShowCurrentInput(const IMFAdapterTextInputType& inputType) in ShowCurrentInput() argument 337 if (inputType == IMFAdapterTextInputType::NUMBER) { in ShowCurrentInput()
|
/base/startup/appspawn/test/unittest/app_spawn_standard_test/ |
H A D | app_spawn_appmgr_test.cpp | 756 uint32_t inputType[inputCount] = {0, TLV_MSG_FLAGS, TLV_PERMISSION, TLV_MAX}; in HWTEST_F() local 761 ret = SetAppSpawnMsgFlag(outMsg, inputType[i], j); in HWTEST_F() 763 ret = CheckAppSpawnMsgFlag(outMsg, inputType[i], j); in HWTEST_F() 769 ret = SetAppSpawnMsgFlag(outMsg, inputType[i], j); in HWTEST_F() 771 ret = CheckAppSpawnMsgFlag(outMsg, inputType[i], j); in HWTEST_F() 777 ret = SetAppSpawnMsgFlag(nullptr, inputType[i], j); in HWTEST_F() 779 ret = CheckAppSpawnMsgFlag(nullptr, inputType[i], j); in HWTEST_F()
|