Home | History | Annotate | Download | only in rendering

Lines Matching full:containerset

147                 HashSet<RenderBlock*>* containerSet = gPercentHeightContainerMap->get(*descendant);
148 ASSERT(containerSet);
149 if (!containerSet)
151 ASSERT(containerSet->contains(this));
152 containerSet->remove(this);
153 if (containerSet->isEmpty()) {
155 delete containerSet;
2508 HashSet<RenderBlock*>* containerSet = gPercentHeightContainerMap->get(descendant);
2509 if (!containerSet) {
2510 containerSet = new HashSet<RenderBlock*>;
2511 gPercentHeightContainerMap->set(descendant, containerSet);
2513 ASSERT(!containerSet->contains(this));
2514 containerSet->add(this);
2522 HashSet<RenderBlock*>* containerSet = gPercentHeightContainerMap->take(descendant);
2523 if (!containerSet)
2526 HashSet<RenderBlock*>::iterator end = containerSet->end();
2527 for (HashSet<RenderBlock*>::iterator it = containerSet->begin(); it != end; ++it) {
2541 delete containerSet;