Lines Matching full:child
48 bool RenderRubyBase::isChildAllowed(RenderObject* child, RenderStyle*) const
50 return child->isInline();
58 for (RenderObject* child = firstChild(); child != beforeChild; child = child->nextSibling()) {
59 if (!child->isFloatingOrPositioned() && !(child->isAnonymousBlock() && child->childrenInline()))
71 // First make sure that beforeChild (if set) is indeed a direct child of this.
73 // Theoretically, in ruby bases, this can happen with only the first such a child,
106 for (RenderObject* child = firstChild(); child != fromBeforeChild; child = firstChild())
107 moveChildTo(toBlock, toBlock->children(), child);
117 for (RenderObject* child = firstChild(); child != fromBeforeChild; child = firstChild()) {
118 if (child->isAnonymousBlock()) {
119 RenderBlock* anonBlock = toRenderBlock(child);
126 ASSERT(child->isFloatingOrPositioned());
127 moveChildTo(toBase, toBase->children(), child);
140 for (RenderObject* child = firstChild(); child; child = next) {
141 next = child->nextSibling();
142 if (child->isFloatingOrPositioned())
144 ASSERT(child->isAnonymousBlock());
146 RenderBlock* anonBlock = toRenderBlock(child);
184 for (RenderObject* child = firstChild(); child != fromBeforeChild; child = firstChild())
185 moveChildTo(toBase, toBase->children(), child);