HomeSort by relevance Sort by last modified time
    Searched defs:parentBox (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/rendering/
RenderBox.h 130 RenderBox* parentBox() const;
522 inline RenderBox* RenderBox::parentBox() const
RenderThemeWin.cpp 878 IntRect parentBox = parentRenderBox->absoluteContentBox();
881 bounds.setHeight(min(parentBox.width(), min(parentBox.height(), bounds.height())));
886 bounds.setY(parentBox.y() + (parentBox.height() - bounds.height() + 1) / 2);
    [all...]
RenderBlockLineLayout.cpp 205 static bool parentIsConstructedOrHaveNext(InlineFlowBox* parentBox)
208 if (parentBox->isConstructed() || parentBox->nextOnLine())
210 parentBox = parentBox->parent();
211 } while (parentBox);
220 InlineFlowBox* parentBox = 0;
229 parentBox = inlineFlow ? inlineFlow->lastLineBox() : toRenderBlock(obj)->lastLineBox();
238 bool canUseExistingParentBox = parentBox && !parentIsConstructedOrHaveNext(parentBox);
    [all...]

Completed in 18 milliseconds