Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/xcomponent/
H A Dxcomponent_component_client.h40 auto iter = xcomponentsMap_.find(idWithContainerId); in GetXComponentFromXcomponentsMap()
41 if (iter == xcomponentsMap_.end()) { in GetXComponentFromXcomponentsMap()
51 auto result = xcomponentsMap_.try_emplace(idWithContainerId, component); in AddXComponentToXcomponentsMap()
64 auto it = xcomponentsMap_.find(idWithContainerId); in DeleteFromXcomponentsMapById()
65 if (it == xcomponentsMap_.end()) { in DeleteFromXcomponentsMapById()
72 xcomponentsMap_.erase(it); in DeleteFromXcomponentsMapById()
77 std::unordered_map<std::string, WeakPtr<XComponentComponent>> xcomponentsMap_; variable