Home
last modified time | relevance | path

Searched refs:newIds (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_part_upd/foreach/
H A Dforeach_element.cpp65 void ForEachElement::RemoveUnusedChildElementsFromRegistery(const std::list<std::string>& newIds) c… in RemoveUnusedChildElementsFromRegistery()
77 std::unordered_set<std::string> newIdsSet(newIds.begin(), newIds.end()); in RemoveUnusedChildElementsFromRegistery()
122 std::list<std::string> newIds = newFEComp->GetIdArray(); in LocalizedUpdate() local
123 std::unordered_set<std::string> newIdsSet(newIds.begin(), newIds.end()); in LocalizedUpdate()
151 for (const auto& newId : newIds) { in LocalizedUpdate()
H A Dforeach_element.h69 void RemoveUnusedChildElementsFromRegistery(const std::list<std::string>& newIds) const;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/
H A Dfor_each_model_ng.cpp55 void ForEachModelNG::SetNewIds(std::list<std::string>&& newIds) in SetNewIds() argument
60 node->SetIds(std::move(newIds)); in SetNewIds()
H A Dfor_each_model_ng.h38 void SetNewIds(std::list<std::string>&& newIds) override;
H A Dfor_each_model.h50 virtual void SetNewIds(std::list<std::string>&& newIds) = 0;
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dfor_each_model_impl.h37 void SetNewIds(std::list<std::string>&& newIds) override;
H A Dfor_each_model_impl.cpp75 void ForEachModelImpl::SetNewIds(std::list<std::string>&& newIds) in SetNewIds() argument
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/swiper/
H A Dswiper_controller_test_ng.cpp76 std::list<std::string> newIds; in CreateForEachSwiper() local
78 newIds.emplace_back(std::to_string(index)); in CreateForEachSwiper()
80 forEachModelNG.SetNewIds(std::move(newIds)); in CreateForEachSwiper()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_foreach_ffi.cpp181 std::unordered_set<std::string> newIds; in FfiOHOSAceFrameworkViewSetIdArrayReturnStruct() local
186 std::pair<std::unordered_set<std::string>::iterator, bool> ret = newIds.insert(strId); in FfiOHOSAceFrameworkViewSetIdArrayReturnStruct()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_foreach.cpp162 std::unordered_set<std::string> newIds; in SetIdArray() local
169 … std::pair<std::unordered_set<std::string>::iterator, bool> ret = newIds.insert(strId->ToString()); in SetIdArray()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/common/
H A Delement_proxy.cpp1280 const auto& newIds = forEachComponent->GetIdArray(); in UpdateForPartialUpdate() local
1283 for (const auto& newId : newIds) { in UpdateForPartialUpdate()
1334 const auto& newIds = forEachComponent->GetIdArray(); in LocalizedUpdate() local
1357 for (const auto& newId : newIds) { in LocalizedUpdate()
1366 for (const auto& newId : newIds) { in LocalizedUpdate()
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/list/
H A Dlist_common_test_ng.cpp124 std::list<std::string> newIds; in CreateForEachList() local
126 newIds.emplace_back(std::to_string(index)); in CreateForEachList()
128 forEachModelNG.SetNewIds(std::move(newIds)); in CreateForEachList()