Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBlock.cpp166 HashSet<RenderBlock*>* containerSet = it->value.get(); in removeBlockFromDescendantAndContainerMaps() local
167 ASSERT(containerSet->contains(block)); in removeBlockFromDescendantAndContainerMaps()
168 containerSet->remove(block); in removeBlockFromDescendantAndContainerMaps()
169 if (containerSet->isEmpty()) in removeBlockFromDescendantAndContainerMaps()
2738 HashSet<RenderBlock*>* containerSet = containerMap->get(descendant); in insertIntoTrackedRendererMaps() local
2739 if (!containerSet) { in insertIntoTrackedRendererMaps()
2740 containerSet = new HashSet<RenderBlock*>; in insertIntoTrackedRendererMaps()
2741 containerMap->set(descendant, adoptPtr(containerSet)); in insertIntoTrackedRendererMaps()
2743 ASSERT(!containerSet->contains(this)); in insertIntoTrackedRendererMaps()
2744 containerSet->add(this); in insertIntoTrackedRendererMaps()
[all …]