Home | History | Annotate | Download | only in rendering

Lines Matching refs:continuations

169     // have continuations of their own that are anonymous children of our continuation.
366 // minimal # of continuations needed for the inline.
534 // Delete our line boxes before we do the inline split into continuations.
663 // cross the streams and have to cope with both types of continuations mixed together).
671 // If yes, we do not want split the block into continuations.
739 // our block into continuations.
999 // FIXME: This check isn't required when inline run-ins can't be split into continuations.
2687 ListHashSet<RenderInline*>* continuations = table->get(this);
2688 if (!continuations) {
2689 continuations = new ListHashSet<RenderInline*>;
2690 table->set(this, continuations);
2693 continuations->add(flow);
2702 ListHashSet<RenderInline*>* continuations = table->get(this);
2703 if (!continuations)
2706 return continuations->contains(flow);
2715 ListHashSet<RenderInline*>* continuations = table->get(this);
2716 if (!continuations)
2720 ListHashSet<RenderInline*>::iterator end = continuations->end();
2721 for (ListHashSet<RenderInline*>::iterator it = continuations->begin(); it != end; ++it) {
2734 delete continuations;