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

/external/webkit/Source/WebCore/rendering/
H A DRenderInline.cpp429 RenderBoxModelObject* beforeChildParent = 0; local
431 beforeChildParent = toRenderBoxModelObject(beforeChild->parent());
435 beforeChildParent = cont;
437 beforeChildParent = flow;
441 return beforeChildParent->addChildIgnoringContinuation(newChild, beforeChild);
446 bool bcpInline = beforeChildParent->isInline();
449 if (flow == beforeChildParent)
455 return beforeChildParent->addChildIgnoringContinuation(newChild, beforeChild);
459 return beforeChildParent->addChildIgnoringContinuation(newChild, beforeChild);
H A DRenderBlock.cpp342 RenderBoxModelObject* beforeChildParent = 0; local
344 beforeChildParent = toRenderBoxModelObject(beforeChild->parent());
348 beforeChildParent = cont;
350 beforeChildParent = flow;
354 return beforeChildParent->addChildIgnoringContinuation(newChild, beforeChild);
359 bool bcpIsNormal = beforeChildParent->isInline() || !beforeChildParent->style()->columnSpan();
362 if (flow == beforeChildParent)
368 return beforeChildParent->addChildIgnoringContinuation(newChild, beforeChild);
371 return beforeChildParent
380 RenderBlock* beforeChildParent = toRenderBlock(beforeChild && beforeChild->parent()->isRenderBlock() ? beforeChild->parent() : lastChild()); local
[all...]

Completed in 55 milliseconds