Home
last modified time | relevance | path

Searched refs:ForEachElement (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/foreach/
H A Dfor_each_element.h27 class ACE_EXPORT ForEachElement : public MultiComposedElement {
28 DECLARE_ACE_TYPE(ForEachElement, MultiComposedElement);
31 explicit ForEachElement(const ComposeId& id) : MultiComposedElement(id) {} in ForEachElement() function
32 ~ForEachElement() override = default;
H A Dfor_each_component.cpp25 return AceType::MakeRefPtr<ForEachElement>(GetId()); in CreateElement()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_part_upd/foreach/
H A Dforeach_element.h28 class ACE_EXPORT ForEachElement : public MultiComposedElement {
29 DECLARE_ACE_TYPE(PartUpd::ForEachElement, MultiComposedElement);
34 explicit ForEachElement(const ComposeId& id) : MultiComposedElement(id) {}; in ForEachElement() function
35 ~ForEachElement() override = default;
H A Dforeach_element.cpp26 bool ForEachElement::CanUpdate(const RefPtr<Component>& newComponent) in CanUpdate()
31 bool ForEachElement::CompareSlots(const RefPtr<Element>& first, const RefPtr<Element>& second) in CompareSlots()
38 void ForEachElement::MakeElementByIdMap(const std::list<RefPtr<Element>>& elmts, const std::list<st… in MakeElementByIdMap()
65 void ForEachElement::RemoveUnusedChildElementsFromRegistery(const std::list<std::string>& newIds) c… in RemoveUnusedChildElementsFromRegistery()
97 void ForEachElement::Update() in Update()
110 void ForEachElement::LocalizedUpdate() in LocalizedUpdate()
H A Dforeach_component.cpp24 return AceType::MakeRefPtr<PartUpd::ForEachElement>(GetId()); in CreateElement()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/foreach/
H A Dlazy_foreach_element.h26 class LazyForEachElement : public V1::ForEachElement {
27 DECLARE_ACE_TYPE(V2::LazyForEachElement, V1::ForEachElement);
30 explicit LazyForEachElement(const std::string& id) : V1::ForEachElement(id) {} in LazyForEachElement()
H A Dlazy_foreach_element.cpp30 ForEachElement::Update(); in Update()
39 ForEachElement::SetNewComponent(newComponent); in SetNewComponent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/common/
H A Delement_proxy.cpp1663 …auto feElmt = elmt != nullptr ? AceType::DynamicCast<OHOS::Ace::PartUpd::ForEachElement>(elmt) : n… in GetIdArray()