Searched refs:formWindow (Results 1 - 13 of 13) sorted by relevance
/foundation/ability/form_fwk/interfaces/inner_api/src/ |
H A D | form_js_info.cpp | 35 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 D | formprovidermgr_fuzzer.cpp | 48 FormWindow formWindow; in DoSomethingInterestingWithMyAPI() local 49 formItemInfo.SetFormWindow(formWindow); in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/interfaces/inner_api/include/ |
H A D | form_js_info.h | 45 FormWindow formWindow; member
|
/foundation/ability/form_fwk/services/src/ |
H A D | form_item_info.cpp | 406 * @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 D | form_dump_mgr.cpp | 167 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 D | form_task_mgr.cpp | 781 form.formWindow = record.formWindow; in CreateFormJsInfo()
|
H A D | form_data_mgr.cpp | 181 newRecord.formWindow = formInfo.GetFormWindow(); in CreateFormRecord() 228 formInfo.formWindow = record.formWindow; in CreateFormJsInfo()
|
/foundation/ability/form_fwk/services/include/ |
H A D | form_record.h | 62 FormWindow formWindow; member in OHOS::AppExecFwk::FormRecord
|
H A D | form_item_info.h | 251 * @param formWindow form window. 253 void SetFormWindow(const FormWindow &formWindow);
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/src/ |
H A D | form_info.cpp | 324 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 D | form_element.cpp | 275 { formJsInfo.formWindow.designWidth, formJsInfo.formWindow.autoDesignWidth }); in Prepare()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/form/ |
H A D | form_pattern.cpp | 1230 container->SetWindowConfig({ formJsInfo.formWindow.designWidth, formJsInfo.formWindow.autoDesignWidth }); in InitFormManagerDelegate()
|
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/bundlemgr/ |
H A D | bundle_mgr.cpp | 955 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