Searched defs:toChildList (Results 1 - 1 of 1) sorted by relevance

/external/webkit/WebCore/rendering/
H A DRenderBlock.cpp405 void RenderBlock::moveChildTo(RenderObject* to, RenderObjectChildList* toChildList, RenderObject* child) argument
408 toChildList->appendChildNode(to, children()->removeChildNode(this, child, false), false);
411 void RenderBlock::moveChildTo(RenderObject* to, RenderObjectChildList* toChildList, RenderObject* beforeChild, RenderObject* child) argument
415 toChildList->insertChildNode(to, children()->removeChildNode(this, child, false), beforeChild, false);
418 void RenderBlock::moveAllChildrenTo(RenderObject* to, RenderObjectChildList* toChildList) argument
424 toChildList->appendChildNode(to, children()->removeChildNode(this, child, false), false);
428 void RenderBlock::moveAllChildrenTo(RenderObject* to, RenderObjectChildList* toChildList, RenderObject* beforeChild) argument
432 moveAllChildrenTo(to, toChildList);
439 toChildList->insertChildNode(to, children()->removeChildNode(this, child, false), beforeChild, false);

Completed in 57 milliseconds