Home
last modified time | relevance | path

Searched refs:inputType (Results 1 - 25 of 33) sorted by relevance

12

/base/inputmethod/imf/frameworks/ndk/src/
H A Dinputmethod_text_config_capi.cpp34 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 Dinputmethod_controller_capi.cpp125 .inputPattern = static_cast<InputMethod_TextInputType>(config.inputType), in ConstructTextConfig()
/base/inputmethod/imf/services/src/
H A Dsys_cfg_parser.cpp37 bool SysCfgParser::ParseInputType(std::vector<InputTypeInfo> &inputType) in ParseInputType() argument
46 inputType = inputTypeCfg.inputType; in ParseInputType()
/base/inputmethod/imf/interfaces/kits/c/
H A Dinputmethod_text_config_capi.h75 * @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 Dsys_cfg_parser.h57 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 Dsys_panel_status.h27 InputType inputType = InputType::NONE; member
/base/inputmethod/imf/test/unittest/cpp_test/src/
H A Djson_operate_test.cpp68 "\"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 Dark_imf_adapter_impl.cpp54 void ArkIMFAdapterImpl::ShowCurrentInput(const int32_t& inputType) in ShowCurrentInput() argument
56 real_->ShowCurrentInput((OHOS::NWeb::IMFAdapterTextInputType)inputType); in ShowCurrentInput()
H A Dark_imf_adapter_impl.h34 void ShowCurrentInput(const int32_t& inputType) override;
/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webcore/
H A Dark_imfadapter_wrapper.cpp52 void ArkIMFAdapterWrapper::ShowCurrentInput(const OHOS::NWeb::IMFAdapterTextInputType& inputType) in ShowCurrentInput() argument
54 return ctocpp_->ShowCurrentInput((int32_t)inputType); in ShowCurrentInput()
H A Dark_imfadapter_wrapper.h34 void ShowCurrentInput(const OHOS::NWeb::IMFAdapterTextInputType& inputType) override;
/base/inputmethod/imf/frameworks/native/inputmethod_ability/src/
H A Dinput_method_core_proxy.cpp55 int32_t InputMethodCoreProxy::OnSetInputType(InputType inputType)
58 [inputType](MessageParcel &data) { return ITypesUtil::Marshal(data, inputType); },
H A Dinput_method_core_stub.cpp162 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 Dinput_method_ability.cpp254 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 Dnative_inputmethod_types.h38 InputMethod_TextInputType inputType; member
/base/inputmethod/imf/frameworks/native/inputmethod_ability/include/
H A Di_input_method_core.h68 virtual int32_t OnSetInputType(InputType inputType) = 0;
H A Dinput_method_core_proxy.h48 int32_t OnSetInputType(InputType inputType) override;
H A Dinput_method_core_stub.h49 int32_t OnSetInputType(InputType inputType) override;
/base/inputmethod/imf/common/src/
H A Ditypes_util.cpp317 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 Dark_imf_adapter.h160 virtual void ShowCurrentInput(const int32_t& inputType) = 0;
/base/web/webview/ohos_adapter/inputmethodframework_adapter/include/
H A Dimf_adapter_impl.h104 void ShowCurrentInput(const IMFAdapterTextInputType& inputType) override;
/base/web/webview/ohos_interface/include/ohos_adapter/
H A Dimf_adapter.h187 virtual void ShowCurrentInput(const IMFAdapterTextInputType& inputType) = 0;
/base/security/device_auth/services/legacy/group_manager/inc/
H A Dgroup_operation_common.h38 int32_t AssertGroupTypeMatch(int32_t inputType, int32_t targetType);
/base/web/webview/ohos_adapter/inputmethodframework_adapter/src/
H A Dimf_adapter_impl.cpp334 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 Dapp_spawn_appmgr_test.cpp756 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()

Completed in 12 milliseconds

12