/ohos5.0/foundation/ability/form_fwk/services/include/ |
H A D | form_item_info.h | 303 FormType GetType() const; 308 void SetType(const FormType &type); 343 FormType GetUiSyntax() const; 348 void SetUiSyntax(const FormType &uiSyntax); 474 FormType type_ = FormType::JS; 475 FormType uiSyntax_ = FormType::JS;
|
H A D | form_record.h | 67 FormType type = FormType::JS; 68 FormType uiSyntax = FormType::JS;
|
H A D | form_data_proxy_record.h | 41 FormType uiSyntax, uint32_t tokenId, const int32_t uid); 111 FormType uiSyntax_;
|
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/include/ |
H A D | extension_form_info.h | 36 FormType type = FormType::JS; 37 FormType uiSyntax = FormType::JS;
|
H A D | form_info.h | 51 FormType type = FormType::JS; 52 FormType uiSyntax = FormType::JS;
|
H A D | form_info_base.h | 39 enum class FormType { enum
|
/ohos5.0/foundation/ability/form_fwk/interfaces/inner_api/include/ |
H A D | form_js_info.h | 49 FormType type = FormType::JS; 50 FormType uiSyntax = FormType::JS;
|
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/src/ |
H A D | extension_form_profile.cpp | 50 const std::map<std::string, FormType> formTypeMap = { 51 {"JS", FormType::JS}, 52 {"eTS", FormType::ETS} 55 const std::map<std::string, FormType> uiSyntaxMap = { 56 {"hml", FormType::JS}, 57 {"arkts", FormType::ETS}
|
H A D | form_info.cpp | 168 type = static_cast<FormType>(typeData); in ReadFromParcel() 172 uiSyntax = static_cast<FormType>(uiSyntaxData); in ReadFromParcel() 604 GetValueIfFindKey<FormType>(jsonObject, in from_json() 660 GetValueIfFindKey<FormType>(jsonObject, in from_json()
|
/ohos5.0/foundation/ability/form_fwk/services/src/ |
H A D | form_item_info.cpp | 487 FormType FormItemInfo::GetType() const in GetType() 492 void FormItemInfo::SetType(const FormType &type) in SetType() 527 FormType FormItemInfo::GetUiSyntax() const in GetUiSyntax() 532 void FormItemInfo::SetUiSyntax(const FormType &uiSyntax) in SetUiSyntax()
|
H A D | form_dump_mgr.cpp | 67 … formInfos += " type [" + std::string(info.uiSyntax == FormType::JS ? "JS" : "ArkTS") + "]\n"; in DumpTemporaryFormInfos() 86 … formInfos += " type [" + std::string(info.uiSyntax == FormType::JS ? "JS" : "ArkTS") + "]\n"; in DumpStaticBundleFormInfos() 173 …formInfo += " type [" + std::string(formRecordInfo.uiSyntax == FormType::JS ? "JS" : "ArkTS") +… in DumpFormInfo()
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-form-kit/ |
H A D | js-apis-application-formInfo.md | 29 | type | [FormType](#formtype) | 是 | 否 | 表示卡片类型,当前支持JS卡片。 | 43 ## FormType section
|
H A D | js-apis-app-form-formInfo.md | 31 | type | [FormType](#formtype) | 是 | 否 | 卡片类型。当前支持JS卡片、ArkTS卡片。 <br>**原子化… 47 ## FormType section
|
/ohos5.0/foundation/ability/form_fwk/test/fuzztest/formprovidermgr_fuzzer/ |
H A D | formprovidermgr_fuzzer.cpp | 64 FormType type = FormType::JS; in DoSomethingInterestingWithMyAPI()
|
/ohos5.0/foundation/ability/form_fwk/frameworks/js/napi/form_info/ |
H A D | js_form_info.cpp | 30 … napi_set_named_property(engine, objValue, "JS", CreateJsValue(engine, AppExecFwk::FormType::JS)); in CreateJsFormType() 31 …napi_set_named_property(engine, objValue, "eTS", CreateJsValue(engine, AppExecFwk::FormType::ETS)); in CreateJsFormType() 32 …napi_set_named_property(engine, objValue, "arkTS", CreateJsValue(engine, AppExecFwk::FormType::ETS… in CreateJsFormType()
|
/ohos5.0/foundation/ability/form_fwk/test/unittest/fms_form_render_mgr_inner_test/ |
H A D | fms_form_render_mgr_inner_test.cpp | 350 formRecord.uiSyntax = FormType::JS; 368 formRecord.uiSyntax = FormType::ETS; 387 formRecord.uiSyntax = FormType::ETS; 407 formRecord.uiSyntax = FormType::ETS; 427 formRecord.uiSyntax = FormType::ETS; 449 formRecord.uiSyntax = FormType::ETS; 473 formRecord.uiSyntax = FormType::ETS;
|
/ohos5.0/foundation/ability/form_fwk/interfaces/inner_api/src/ |
H A D | form_js_info.cpp | 42 type = static_cast<FormType>(typeData); in ReadFromParcel() 43 uiSyntax = static_cast<FormType>(parcel.ReadInt32()); in ReadFromParcel()
|
/ohos5.0/docs/en/application-dev/reference/apis-form-kit/ |
H A D | js-apis-application-formInfo.md | 29 | type | [FormType](#formtype) | Yes | No | Type of the widget. Currently,… 43 ## FormType section
|
/ohos5.0/docs/zh-cn/release-notes/changelogs/v3.2-beta5/ |
H A D | changelogs-ability.md | 89 - 枚举 FormType 的 eTS 被删除,可以使用 @ohos.app.form.formInfo.d.ts 的 FormType 中的 eTS 替换。
|
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_3.2.10.1/ |
H A D | changelogs-ability.md | 91 - 枚举 FormType 的 eTS 被删除,可以使用 @ohos.app.form.formInfo.d.ts 的 FormType 中的 eTS 替换。
|
/ohos5.0/foundation/ability/form_fwk/test/unittest/fms_form_render_mgr_test/ |
H A D | fms_form_render_mgr_test.cpp | 70 formRecord.uiSyntax = FormType::JS; 87 formRecord.uiSyntax = FormType::ETS; 106 formRecord.uiSyntax = FormType::ETS; 126 formRecord.uiSyntax = FormType::ETS;
|
/ohos5.0/foundation/ability/form_fwk/frameworks/js/napi/formUtil/ |
H A D | napi_form_util.cpp | 496 inline FormType GetFormType(const FormInfo &formInfo) in GetFormType() 498 if (formInfo.uiSyntax == FormType::ETS) { in GetFormType() 499 return FormType::ETS; in GetFormType()
|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_3.2.10.1/ |
H A D | changelogs-ability.md | 91 …- **eTS** of **FormType** is deleted. Use **eTS** of **FormType** in **@ohos.app.form.formInfo.d.t…
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.1-Release/ |
H A D | js-apidiff-ability.md | 78 | ohos.application.formInfo | FormType | JS = 1 | 新增 | 91 | ohos.application.formInfo | FormInfo | type: FormType; | 新增 |
|
/ohos5.0/docs/en/release-notes/changelogs/v3.2-beta5/ |
H A D | changelogs-ability.md | 89 …- **eTS** of **FormType** is deleted. Use **eTS** of **FormType** in **@ohos.app.form.formInfo.d.t…
|