Home
last modified time | relevance | path

Searched refs:removedElmtId (Results 1 – 24 of 24) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/
H A Dif_else_model_ng.cpp39 void IfElseModelNG::SetBranchId(int32_t value, std::list<int32_t>& removedElmtId) in SetBranchId() argument
44 node->SetBranchId(value, removedElmtId); in SetBranchId()
H A Dif_else_node.cpp70 void IfElseNode::SetBranchId(int32_t value, std::list<int32_t>& removedElmtId) in SetBranchId() argument
79 CollectRemovedChildren(GetChildren(), removedElmtId, true); in SetBranchId()
H A Drepeat_model_ng.cpp39 void RepeatModelNG::FinishRender(std::list<int32_t>& removedElmtId) in FinishRender() argument
44 repeatNode->FinishRepeatRender(removedElmtId); in FinishRender()
H A Dfor_each_node.cpp72 void ForEachNode::CollectRemovingIds(std::list<int32_t>& removedElmtId) in CollectRemovingIds() argument
87 CollectRemovedChildren({ iter->second }, removedElmtId, false); in CollectRemovingIds()
187 void ForEachNode::FinishRepeatRender(std::list<int32_t>& removedElmtId) in FinishRepeatRender() argument
213 CollectRemovedChildren({ oldNode }, removedElmtId, false); in FinishRepeatRender()
H A Dfor_each_node.h49 void CollectRemovingIds(std::list<int32_t>& removedElmtId);
56 void FinishRepeatRender(std::list<int32_t>& removedElmtId);
H A Drepeat_node.cpp49 void RepeatNode::FinishRepeatRender(std::list<int32_t>& removedElmtId) in FinishRepeatRender() argument
75 CollectRemovedChildren({ oldNode }, removedElmtId, false); in FinishRepeatRender()
H A Dfor_each_model_ng.cpp63 void ForEachModelNG::SetRemovedElmtIds(std::list<int32_t>& removedElmtId) in SetRemovedElmtIds() argument
68 node->CollectRemovingIds(removedElmtId); in SetRemovedElmtIds()
H A Dif_else_model.h35 virtual void SetBranchId(int32_t value, std::list<int32_t>& removedElmtId) = 0;
H A Dif_else_model_ng.h31 void SetBranchId(int32_t value, std::list<int32_t>& removedElmtId) override;
H A Drepeat_model.h37 virtual void FinishRender(std::list<int32_t>& removedElmtId) = 0;
H A Drepeat_model_ng.h36 void FinishRender(std::list<int32_t>& removedElmtId) override;
H A Dif_else_node.h41 void SetBranchId(int32_t value, std::list<int32_t>& removedElmtId);
H A Dfor_each_model_ng.h39 void SetRemovedElmtIds(std::list<int32_t>& removedElmtId) override;
H A Dfor_each_model.h51 virtual void SetRemovedElmtIds(std::list<int32_t>& removedElmtId) = 0;
H A Drepeat_node.h49 void FinishRepeatRender(std::list<int32_t>& removedElmtId);
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dif_else_model_impl.h28 void SetBranchId(int32_t value, std::list<int32_t>& removedElmtId) override;
H A Dfor_each_model_impl.h41 void SetRemovedElmtIds(std::list<int32_t>& removedElmtId) override {}; in SetRemovedElmtIds() argument
H A Dif_else_model_impl.cpp38 void IfElseModelImpl::SetBranchId(int32_t value, std::list<int32_t>& removedElmtId) in SetBranchId() argument
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/base/
H A Dui_node_test_ng.cpp1574 std::list<int32_t> removedElmtId; variable
1575 parent->UINode::CollectRemovedChildren(child1->GetChildren(), removedElmtId, true);
1612 std::list<int32_t> removedElmtId; variable
2252 std::list<int32_t> removedElmtId; variable
2253 testNode1->CollectRemovedChildren(testNode1->GetChildren(), removedElmtId, true);
2254 EXPECT_EQ(removedElmtId.size(), 2);
2255 testNode2->CollectRemovedChildren(testNode2->GetChildren(), removedElmtId, true);
2256 EXPECT_EQ(removedElmtId.size(), 3);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/base/
H A Dui_node.cpp1576 std::list<int32_t>& removedElmtId, bool isEntry) in CollectRemovedChildren() argument
1585 CollectRemovedChild(child, removedElmtId); in CollectRemovedChildren()
1593 void UINode::CollectRemovedChild(const RefPtr<UINode>& child, std::list<int32_t>& removedElmtId) in CollectRemovedChild() argument
1595 removedElmtId.emplace_back(child->GetId()); in CollectRemovedChild()
1600 CollectRemovedChildren(child->GetChildren(), removedElmtId, false); in CollectRemovedChild()
H A Dui_node.h850 std::list<int32_t>& removedElmtId, bool isEntry);
851 void CollectRemovedChild(const RefPtr<UINode>& child, std::list<int32_t>& removedElmtId);
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/puv2_common/
H A Dpuv2_view_base.ts271 protected abstract purgeVariableDependenciesOnElmtId(removedElmtId: number);
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/list/
H A Dlist_common_test_ng.cpp129 std::list<int32_t> removedElmtId; in CreateForEachList() local
130 forEachModelNG.SetRemovedElmtIds(removedElmtId); in CreateForEachList()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/partial_update/
H A Dpu_view.ts347 protected abstract purgeVariableDependenciesOnElmtId(removedElmtId: number);