Lines Matching refs:shadowNode
13 ShadowNode::Shared shadowNode, in set() argument
15 map_[shadowNode->getTag()] = std::make_pair(shadowNode, parentTag); in set()
19 const ShadowNode::Shared &shadowNode) const { in has()
20 return map_.find(shadowNode->getTag()) != map_.cend(); in has()
28 void NewestShadowNodesRegistry::update(ShadowNode::Shared shadowNode) { in update() argument
29 const auto it = map_.find(shadowNode->getTag()); in update()
31 it->second.first = shadowNode; in update()
39 auto shadowNode = map_[tag].first; in remove() local
41 while (shadowNode != nullptr) { in remove()
43 for (const auto &child : shadowNode->getChildren()) { in remove()
54 auto it = map_.find(shadowNode->getTag()); in remove()
58 shadowNode = map_[parentTag].first; in remove()