Searched refs:composedElementMap_ (Results 1 – 2 of 2) sorted by relevance
424 const auto& it = composedElementMap_.find(id); in GetComposedElementById()425 if (it != composedElementMap_.end() && !it->second.empty()) { in GetComposedElementById()1344 const auto& it = composedElementMap_.find(id); in ScheduleUpdate()1345 if (it != composedElementMap_.end()) { in ScheduleUpdate()1356 auto it = composedElementMap_.find(id); in AddComposedElement()1357 if (it != composedElementMap_.end()) { in AddComposedElement()1362 composedElementMap_[id] = std::move(elements); in AddComposedElement()1369 auto it = composedElementMap_.find(id); in RemoveComposedElement()1370 if (it != composedElementMap_.end()) { in RemoveComposedElement()1373 composedElementMap_.erase(it); in RemoveComposedElement()[all …]
892 std::unordered_map<ComposeId, std::list<RefPtr<ComposedElement>>> composedElementMap_; variable