Home | History | Annotate | Download | only in rendering

Lines Matching refs:continuations

171     // have continuations of their own that are anonymous children of our continuation.
1876 ListHashSet<RenderInline*>* continuations = table->get(this);
1877 if (!continuations) {
1878 continuations = new ListHashSet<RenderInline*>;
1879 table->set(this, continuations);
1882 continuations->add(flow);
1891 ListHashSet<RenderInline*>* continuations = table->get(this);
1892 if (!continuations)
1896 ListHashSet<RenderInline*>::iterator end = continuations->end();
1897 for (ListHashSet<RenderInline*>::iterator it = continuations->begin(); it != end; ++it) {
1910 delete continuations;