Home
last modified time | relevance | path

Searched refs:RenderForm (Results 1 - 25 of 35) sorted by relevance

12

/foundation/arkui/ace_engine/frameworks/core/components/form/
H A Drender_form.h25 class RenderForm : public RenderSubContainer { class
26 DECLARE_ACE_TYPE(RenderForm, RenderSubContainer);
31 ~RenderForm() override = default;
H A Drosen_render_form.h23 class RosenRenderForm : public RenderForm {
24 DECLARE_ACE_TYPE(RosenRenderForm, RenderForm);
H A Drender_form.cpp20 void RenderForm::Update(const RefPtr<Component>& component) in Update()
45 void RenderForm::PerformLayout() in PerformLayout()
56 bool RenderForm::TouchTest(const Point& globalPoint, in TouchTest()
H A Dform_component.cpp32 return RenderForm::Create(); in CreateRenderNode()
H A Drender_form_creator.cpp19 RefPtr<RenderNode> RenderForm::Create() in Create()
H A Dform_element.cpp316 auto renderForm = AceType::DynamicCast<RenderForm>(render); in Prepare()
401 auto formNode = AceType::DynamicCast<RenderForm>(renderNode_); in CreateCardContainer()
424 return RenderForm::Create(); in CreateRenderNode()
/foundation/ability/form_fwk/services/src/
H A Dform_sandbox_render_mgr_inner.cpp66 ErrCode FormSandboxRenderMgrInner::RenderForm( in RenderForm() function in OHOS::AppExecFwk::FormSandboxRenderMgrInner
89 return FormRenderMgrInner::RenderForm(formRecord, want, hostToken); in RenderForm()
H A Dform_render_mgr.cpp81 ErrCode FormRenderMgr::RenderForm( in RenderForm() function in OHOS::AppExecFwk::FormRenderMgr
105 return sandboxInners_[formRecord.userId]->RenderForm(formRecord, want, hostToken); in RenderForm()
108 return renderInners_[formRecord.userId]->RenderForm(formRecord, want, hostToken); in RenderForm()
/foundation/ability/form_fwk/test/unittest/fms_form_render_mgr_test/
H A Dmock_form_sandbox_render_mgr_inner.cpp31 ErrCode FormSandboxRenderMgrInner::RenderForm( in RenderForm() function in OHOS::AppExecFwk::FormSandboxRenderMgrInner
H A Dmock_form_render_mgr_inner.cpp56 ErrCode FormRenderMgrInner::RenderForm( in RenderForm() function in OHOS::AppExecFwk::FormRenderMgrInner
H A Dfms_form_render_mgr_test.cpp62 * @tc.desc: test RenderForm function and return ERR_OK.
73 EXPECT_EQ(ERR_OK, formRenderMgr.RenderForm(formRecord, wantParams, hostToken)); in HWTEST_F()
79 * @tc.desc: test RenderForm function and return ERR_APPEXECFWK_FORM_INVALID_PARAM.
92 ERR_APPEXECFWK_FORM_INVALID_PARAM, formRenderMgr.RenderForm(formRecord, wantParams, hostToken)); in HWTEST_F()
98 * @tc.desc: test RenderForm function and privacyLevel is 1.
112 EXPECT_EQ(ERR_OK, formRenderMgr.RenderForm(formRecord, wantParams, hostToken)); in HWTEST_F()
118 * @tc.desc: test RenderForm function and privacyLevel is 0.
132 EXPECT_EQ(ERR_OK, formRenderMgr.RenderForm(formRecord, wantParams, hostToken)); in HWTEST_F()
/foundation/ability/form_fwk/services/include/
H A Dform_sandbox_render_mgr_inner.h38 ErrCode RenderForm(
H A Dform_render_mgr.h43 ErrCode RenderForm(
H A Dform_render_mgr_inner.h42 virtual ErrCode RenderForm(
/foundation/ability/form_fwk/interfaces/inner_api/include/
H A Dform_render_interface.h44 virtual int32_t RenderForm(const FormJsInfo &formJsInfo, const Want &want,
H A Dform_render_proxy.h42 int32_t RenderForm(const FormJsInfo &formJsInfo, const Want &want, sptr<IRemoteObject> callerToken) override;
/foundation/ability/form_fwk/test/fuzztest/formsandboxrendermgrinner_fuzzer/
H A Dformsandboxrendermgrinner_fuzzer.cpp47 formSandboxRenderMgrInner.RenderForm(formRecord, want); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/test/unittest/fms_form_render_proxy_test/
H A Dfms_form_render_proxy_test.cpp46 * @tc.desc: test RenderForm function and callerToken is not nullptr.
58 int result = formRenderProxy_->RenderForm(formJsInfo, want, callerToken); in HWTEST_F()
65 * @tc.desc: test RenderForm function and callerToken is nullptr.
74 int result = formRenderProxy_->RenderForm(formJsInfo, want, nullptr); in HWTEST_F()
/foundation/ability/form_fwk/services/form_render_service/include/
H A Dform_render_impl.h51 int32_t RenderForm(const FormJsInfo &formJsInfo, const Want &want,
/foundation/ability/form_fwk/test/fuzztest/formrenderimpl_fuzzer/
H A Dformrenderimpl_fuzzer.cpp46 formRenderImpl.RenderForm(formJsInfo, want, callerToken); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/test/fuzztest/formrenderproxy_fuzzer/
H A Dformrenderproxy_fuzzer.cpp46 formRenderProxy.RenderForm(formJsInfo, want, callerToken); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/test/unittest/fms_form_render_mgr_inner_test/
H A Dfms_form_render_mgr_inner_test.cpp56 int32_t RenderForm(const FormJsInfo &formJsInfo, const Want &want,
81 * @tc.desc: test RenderForm function and return ERR_OK.
92 EXPECT_EQ(ERR_OK, formRenderMgrInner.RenderForm(formRecord, want, hostToken)); in HWTEST_F()
98 * @tc.desc: test RenderForm function and atomicRerenderCount_ is 1.
112 ERR_OK, formRenderMgrInner.RenderForm(formRecord, want, hostToken)); in HWTEST_F()
118 * @tc.desc: test RenderForm function and hostToken is not nullptr.
130 formRenderMgrInner.RenderForm(formRecord, want, hostToken)); in HWTEST_F()
136 * @tc.desc: 1.test RenderForm function and conn is nullptr.
149 formRenderMgrInner.RenderForm(formRecord, want, hostToken)); in HWTEST_F()
155 * @tc.desc: 1.test RenderForm functio
[all...]
/foundation/ability/form_fwk/test/fuzztest/formrendermgr_fuzzer/
H A Dformrendermgr_fuzzer.cpp47 formRenderMgr.RenderForm(formRecord, wantParams, hostToken); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/test/fuzztest/formrenderstub_fuzzer/
H A Dformrenderstub_fuzzer.cpp40 int32_t RenderForm(const FormJsInfo &formJsInfo, const Want &want,
/foundation/ability/form_fwk/test/fuzztest/formrendermgrinner_fuzzer/
H A Dformrendermgrinner_fuzzer.cpp46 formRenderMgrInner.RenderForm(formRecord, want, hostToken); in DoSomethingInterestingWithMyAPI()

Completed in 14 milliseconds

12