Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/accessibility/
H A Daccessibility_node_manager.cpp277 composedElementIdMap_[key] = node; in AddComposedElement()
282 auto it = composedElementIdMap_.find(key); in RemoveComposedElementById()
283 if (it != composedElementIdMap_.end()) { in RemoveComposedElementById()
284 composedElementIdMap_.erase(it); in RemoveComposedElementById()
302 const auto itNode = composedElementIdMap_.find(std::to_string(nodeId)); in GetComposedElementFromPage()
303 if (itNode == composedElementIdMap_.end()) { in GetComposedElementFromPage()
668 for (auto& [id, element] : composedElementIdMap_) { in DumpComposedElementsToJson()
H A Daccessibility_node_manager.h169 std::unordered_map<std::string, WeakPtr<ComposedElement>> composedElementIdMap_; variable