/foundation/ability/form_fwk/services/include/ |
H A D | form_timer.h | 24 * @enum UpdateType 27 enum UpdateType { enum 50 UpdateType type = UpdateType::TYPE_INTERVAL_CHANGE; 62 type = UpdateType::TYPE_INTERVAL_CHANGE; in FormTimer() 75 type = UpdateType::TYPE_INTERVAL_CHANGE; in FormTimer() 88 type = UpdateType::TYPE_INTERVAL_CHANGE; in FormTimer() 101 type = UpdateType::TYPE_INTERVAL_CHANGE; in FormTimer()
|
H A D | form_event_util.h | 62 static UpdateType GetUpdateType(const FormRecord &record, const FormTimerCfg &timerCfg);
|
H A D | form_timer_mgr.h | 80 bool UpdateFormTimer(int64_t formId, const UpdateType &type, const FormTimerCfg &timerCfg);
|
/foundation/arkui/ace_engine/frameworks/core/pipeline/base/ |
H A D | component.h | 41 enum class UpdateType { class 96 UpdateType GetUpdateType() const in GetUpdateType() 101 virtual void SetUpdateType(UpdateType updateType) in SetUpdateType() 312 UpdateType updateType_ = UpdateType::ALL;
|
H A D | sole_child_component.h | 38 void SetUpdateType(UpdateType updateType) override
|
H A D | composed_component.h | 40 void SetUpdateType(UpdateType updateType) override
|
H A D | component_group_element.cpp | 42 if (context->GetIsDeclarative() && componentGroup->GetUpdateType() != UpdateType::REBUILD) { in PerformBuild()
|
H A D | component_group.h | 149 void SetUpdateType(UpdateType updateType) override
|
H A D | multi_composed_element.cpp | 41 if (component_->GetUpdateType() == UpdateType::REBUILD) { in UpdateChildren()
|
/foundation/arkui/ace_engine/frameworks/core/components/foreach/ |
H A D | for_each_component.h | 30 SetUpdateType(UpdateType::REBUILD); in ForEachComponent()
|
/foundation/ability/form_fwk/test/fuzztest/formtimermgr_fuzzer/ |
H A D | formtimermgr_fuzzer.cpp | 52 UpdateType type = UpdateType::TYPE_INTERVAL_CHANGE; in DoSomethingInterestingWithMyAPI()
|
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_proxy.cpp | 44 targetNode->GetRootComponent()->SetUpdateType(UpdateType::ALL); in SetShowAttr()
|
/foundation/ability/form_fwk/test/unittest/fms_form_timer_mgr_test/ |
H A D | fms_form_timer_mgr_test.cpp | 118 UpdateType::TYPE_INTERVAL_CHANGE, timerCfg1); in HWTEST_F() 139 UpdateType::TYPE_ATTIME_CHANGE, timerCfg2); in HWTEST_F() 161 UpdateType::TYPE_INTERVAL_TO_ATTIME, timerCfg3); in HWTEST_F() 181 UpdateType::TYPE_ATTIME_TO_INTERVAL, timerCfg4); in HWTEST_F() 307 UpdateType::TYPE_INTERVAL_CHANGE, timerCfg1); in HWTEST_F() 328 UpdateType::TYPE_ATTIME_CHANGE, timerCfg2); in HWTEST_F() 350 UpdateType::TYPE_INTERVAL_TO_ATTIME, timerCfg3); in HWTEST_F() 370 UpdateType::TYPE_ATTIME_TO_INTERVAL, timerCfg4); in HWTEST_F() 561 UpdateType type = UpdateType in HWTEST_F() [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/ |
H A D | distributed_ui.h | 42 enum UpdateType : uint8_t { 123 std::function<void(UpdateType, SerializeableObjectArray&)> onUpdateCb_;
|
H A D | distributed_ui.cpp | 188 DistributedUI::UpdateType updateType; in OnTreeUpdate() 194 updateType = UpdateType::PAGE_CHANGE; in OnTreeUpdate() 200 updateType = UpdateType::PAGE_UPDATE; in OnTreeUpdate()
|
/foundation/arkui/ace_engine/frameworks/core/components/container_modal/ |
H A D | container_modal_element.cpp | 453 floatingTitleChildrenRow->SetUpdateType(UpdateType::REBUILD); in ChangeFloatingTitleIcon() 474 titleChildrenRow->SetUpdateType(UpdateType::REBUILD); in ChangeTitleIcon() 520 titleChildrenRow->SetUpdateType(UpdateType::REBUILD); in SetTitleButtonHide() 525 floatingTitleChildrenRow->SetUpdateType(UpdateType::REBUILD); in SetTitleButtonHide()
|
/foundation/arkui/ace_engine/frameworks/core/components/stepper/ |
H A D | stepper_component.cpp | 98 SetUpdateType(UpdateType::REBUILD); in AppendChild()
|
/foundation/ability/form_fwk/services/src/ |
H A D | form_timer_mgr.cpp | 148 bool FormTimerMgr::UpdateFormTimer(int64_t formId, const UpdateType &type, const FormTimerCfg &timerCfg) in UpdateFormTimer() 156 case UpdateType::TYPE_INTERVAL_CHANGE: { in UpdateFormTimer() 159 case UpdateType::TYPE_ATTIME_CHANGE: { in UpdateFormTimer() 162 case UpdateType::TYPE_INTERVAL_TO_ATTIME: { in UpdateFormTimer() 165 case UpdateType::TYPE_ATTIME_TO_INTERVAL: { in UpdateFormTimer() 169 HILOG_ERROR("invalid UpdateType"); in UpdateFormTimer()
|
H A D | form_event_util.cpp | 423 UpdateType type = GetUpdateType(record, timerCfg); in HandleTimerUpdate() 441 UpdateType FormEventUtil::GetUpdateType(const FormRecord &record, const FormTimerCfg &timerCfg) in GetUpdateType() 565 FormTimerMgr::GetInstance().UpdateFormTimer(formRecord.formId, UpdateType::TYPE_INTERVAL_CHANGE, timerCfg); in HandleAdditionalInfoChanged()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/progress/ |
H A D | progress_test_ng.cpp | 176 layoutProperty_->UpdateType(PROGRESS_TYPE_SCALE); in HWTEST_F() 914 layoutProperty_->UpdateType(PROGRESS_TYPE_LINEAR); in HWTEST_F() 990 layoutProperty_->UpdateType(it); in HWTEST_F() 999 layoutProperty_->UpdateType(PROGRESS_TYPE_CAPSULE); in HWTEST_F() 1049 layoutProperty_->UpdateType(PROGRESS_TYPE_SCALE); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/security_component/ |
H A D | security_component_model_ng.cpp | 209 buttonLayoutProperty->UpdateType(static_cast<ButtonType>(type)); in SetDefaultBackgroundButton() 219 buttonLayoutProperty->UpdateType(ButtonType::NORMAL); in SetInvisibleBackgroundButton()
|
/foundation/arkui/ace_engine/frameworks/core/components/checkable/ |
H A D | render_radio.cpp | 49 if (radio->GetUpdateType() == UpdateType::ALL) { in Update()
|
H A D | render_checkbox.cpp | 94 if (checkbox->GetUpdateType() == UpdateType::ALL) { in Update()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/time_picker/ |
H A D | timepicker_dialog_view.cpp | 291 buttonNextPrevLayoutProperty->UpdateType(ButtonType::ROUNDED_RECTANGLE); in CreateNextPrevButtonNode() 293 buttonNextPrevLayoutProperty->UpdateType(ButtonType::CAPSULE); in CreateNextPrevButtonNode() 681 buttonConfirmLayoutProperty->UpdateType(ButtonType::ROUNDED_RECTANGLE); 683 buttonConfirmLayoutProperty->UpdateType(ButtonType::CAPSULE); 775 buttonCancelLayoutProperty->UpdateType(ButtonType::ROUNDED_RECTANGLE); 777 buttonCancelLayoutProperty->UpdateType(ButtonType::CAPSULE); 823 buttonLayoutProperty->UpdateType(buttonInfos[index].type.value());
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_picker/ |
H A D | textpicker_dialog_view.cpp | 497 buttonConfirmLayoutProperty->UpdateType(ButtonType::ROUNDED_RECTANGLE); 499 buttonConfirmLayoutProperty->UpdateType(ButtonType::CAPSULE); 734 buttonLayoutProperty->UpdateType(buttonInfos[index].type.value()); 851 buttonCancelLayoutProperty->UpdateType(ButtonType::ROUNDED_RECTANGLE); 853 buttonCancelLayoutProperty->UpdateType(ButtonType::CAPSULE); 878 buttonForwardLayoutProperty->UpdateType(ButtonType::ROUNDED_RECTANGLE); 880 buttonForwardLayoutProperty->UpdateType(ButtonType::CAPSULE); 906 buttonBackwardLayoutProperty->UpdateType(ButtonType::ROUNDED_RECTANGLE); 908 buttonBackwardLayoutProperty->UpdateType(ButtonType::CAPSULE);
|