Home | History | Annotate | Download | only in rendering

Lines Matching full:child

55     RenderObject* child = m_table->firstChild();
61 while (child) {
62 if (child->isTableCol())
63 toRenderTableCol(child)->calcPrefWidths();
64 else if (child->isTableSection()) {
65 RenderTableSection* section = toRenderTableSection(child);
140 child = child->nextSibling();
167 RenderObject *child = m_table->firstChild();
170 while (child) {
171 if (child->isTableCol()) {
172 RenderTableCol *col = toRenderTableCol(child);
196 RenderObject *next = child->firstChild();
198 next = child->nextSibling();
199 if (!next && child->parent()->isTableCol()) {
200 next = child->parent()->nextSibling();
203 child = next;