Home
last modified time | relevance | path

Searched refs:formWindow (Results 1 - 13 of 13) sorted by relevance

/foundation/ability/form_fwk/interfaces/inner_api/src/
H A Dform_js_info.cpp35 formWindow.designWidth = parcel.ReadInt32(); in ReadFromParcel()
36 formWindow.autoDesignWidth = parcel.ReadBool(); in ReadFromParcel()
106 // write formWindow in Marshalling()
107 if (!parcel.WriteInt32(formWindow.designWidth) || !parcel.WriteBool(formWindow.autoDesignWidth)) { in Marshalling()
/foundation/ability/form_fwk/test/fuzztest/formprovidermgr_fuzzer/
H A Dformprovidermgr_fuzzer.cpp48 FormWindow formWindow; in DoSomethingInterestingWithMyAPI() local
49 formItemInfo.SetFormWindow(formWindow); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/interfaces/inner_api/include/
H A Dform_js_info.h45 FormWindow formWindow; member
/foundation/ability/form_fwk/services/src/
H A Dform_item_info.cpp406 * @param formWindow form window.
408 void FormItemInfo::SetFormWindow(const FormWindow &formWindow) in SetFormWindow() argument
410 formWindow_.autoDesignWidth = formWindow.autoDesignWidth; in SetFormWindow()
411 formWindow_.designWidth = formWindow.designWidth; in SetFormWindow()
H A Dform_dump_mgr.cpp167 formInfo += " designWidth [" + std::to_string(formRecordInfo.formWindow.designWidth) + "]\n"; in DumpFormInfo()
168 formInfo += " autoDesignWidth [" + std::to_string(formRecordInfo.formWindow.autoDesignWidth) + "]\n"; in DumpFormInfo()
H A Dform_task_mgr.cpp781 form.formWindow = record.formWindow; in CreateFormJsInfo()
H A Dform_data_mgr.cpp181 newRecord.formWindow = formInfo.GetFormWindow(); in CreateFormRecord()
228 formInfo.formWindow = record.formWindow; in CreateFormJsInfo()
/foundation/ability/form_fwk/services/include/
H A Dform_record.h62 FormWindow formWindow; member in OHOS::AppExecFwk::FormRecord
H A Dform_item_info.h251 * @param formWindow form window.
253 void SetFormWindow(const FormWindow &formWindow);
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/src/
H A Dform_info.cpp324 void to_json(nlohmann::json &jsonObject, const FormWindow &formWindow) in to_json() argument
326 jsonObject[JSON_KEY_DESIGN_WIDTH] = formWindow.designWidth; in to_json()
327 jsonObject[JSON_KEY_AUTO_DESIGN_WIDTH] = formWindow.autoDesignWidth; in to_json()
395 void from_json(const nlohmann::json &jsonObject, FormWindow &formWindow) in from_json() argument
402 formWindow.designWidth, in from_json()
410 formWindow.autoDesignWidth, in from_json()
414 APP_LOGE("read formWindow jsonObject error : %{public}d", parseResult); in from_json()
/foundation/arkui/ace_engine/frameworks/core/components/form/
H A Dform_element.cpp275 { formJsInfo.formWindow.designWidth, formJsInfo.formWindow.autoDesignWidth }); in Prepare()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/form/
H A Dform_pattern.cpp1230 container->SetWindowConfig({ formJsInfo.formWindow.designWidth, formJsInfo.formWindow.autoDesignWidth }); in InitFormManagerDelegate()
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/bundlemgr/
H A Dbundle_mgr.cpp955 static void ConvertFormWindow(napi_env env, napi_value objWindowInfo, const FormWindow &formWindow) in ConvertFormWindow() argument
958 NAPI_CALL_RETURN_VOID(env, napi_create_uint32(env, formWindow.designWidth, &nDesignWidth)); in ConvertFormWindow()
961 NAPI_CALL_RETURN_VOID(env, napi_get_boolean(env, formWindow.autoDesignWidth, &nAutoDesignWidth)); in ConvertFormWindow()

Completed in 32 milliseconds