/foundation/arkui/ace_engine/frameworks/core/components/form/ |
H A D | render_form.h | 25 class RenderForm : public RenderSubContainer { class 26 DECLARE_ACE_TYPE(RenderForm, RenderSubContainer); 31 ~RenderForm() override = default;
|
H A D | rosen_render_form.h | 23 class RosenRenderForm : public RenderForm { 24 DECLARE_ACE_TYPE(RosenRenderForm, RenderForm);
|
H A D | render_form.cpp | 20 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 D | form_component.cpp | 32 return RenderForm::Create(); in CreateRenderNode()
|
H A D | render_form_creator.cpp | 19 RefPtr<RenderNode> RenderForm::Create() in Create()
|
H A D | form_element.cpp | 316 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 D | form_sandbox_render_mgr_inner.cpp | 66 ErrCode FormSandboxRenderMgrInner::RenderForm( in RenderForm() function in OHOS::AppExecFwk::FormSandboxRenderMgrInner 89 return FormRenderMgrInner::RenderForm(formRecord, want, hostToken); in RenderForm()
|
H A D | form_render_mgr.cpp | 81 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 D | mock_form_sandbox_render_mgr_inner.cpp | 31 ErrCode FormSandboxRenderMgrInner::RenderForm( in RenderForm() function in OHOS::AppExecFwk::FormSandboxRenderMgrInner
|
H A D | mock_form_render_mgr_inner.cpp | 56 ErrCode FormRenderMgrInner::RenderForm(
in RenderForm() function in OHOS::AppExecFwk::FormRenderMgrInner
|
H A D | fms_form_render_mgr_test.cpp | 62 * @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 D | form_sandbox_render_mgr_inner.h | 38 ErrCode RenderForm(
|
H A D | form_render_mgr.h | 43 ErrCode RenderForm(
|
H A D | form_render_mgr_inner.h | 42 virtual ErrCode RenderForm(
|
/foundation/ability/form_fwk/interfaces/inner_api/include/ |
H A D | form_render_interface.h | 44 virtual int32_t RenderForm(const FormJsInfo &formJsInfo, const Want &want,
|
H A D | form_render_proxy.h | 42 int32_t RenderForm(const FormJsInfo &formJsInfo, const Want &want, sptr<IRemoteObject> callerToken) override;
|
/foundation/ability/form_fwk/test/fuzztest/formsandboxrendermgrinner_fuzzer/ |
H A D | formsandboxrendermgrinner_fuzzer.cpp | 47 formSandboxRenderMgrInner.RenderForm(formRecord, want);
in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/unittest/fms_form_render_proxy_test/ |
H A D | fms_form_render_proxy_test.cpp | 46 * @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 D | form_render_impl.h | 51 int32_t RenderForm(const FormJsInfo &formJsInfo, const Want &want,
|
/foundation/ability/form_fwk/test/fuzztest/formrenderimpl_fuzzer/ |
H A D | formrenderimpl_fuzzer.cpp | 46 formRenderImpl.RenderForm(formJsInfo, want, callerToken);
in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/fuzztest/formrenderproxy_fuzzer/ |
H A D | formrenderproxy_fuzzer.cpp | 46 formRenderProxy.RenderForm(formJsInfo, want, callerToken);
in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/unittest/fms_form_render_mgr_inner_test/ |
H A D | fms_form_render_mgr_inner_test.cpp | 56 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 D | formrendermgr_fuzzer.cpp | 47 formRenderMgr.RenderForm(formRecord, wantParams, hostToken);
in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/fuzztest/formrenderstub_fuzzer/ |
H A D | formrenderstub_fuzzer.cpp | 40 int32_t RenderForm(const FormJsInfo &formJsInfo, const Want &want,
|
/foundation/ability/form_fwk/test/fuzztest/formrendermgrinner_fuzzer/ |
H A D | formrendermgrinner_fuzzer.cpp | 46 formRenderMgrInner.RenderForm(formRecord, want, hostToken);
in DoSomethingInterestingWithMyAPI()
|