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

  /external/webkit/WebCore/rendering/
RenderReplica.cpp 51 setFrameRect(parentBox()->borderBoxRect());
57 m_minPrefWidth = parentBox()->width();
RenderThemeChromiumSkia.cpp 415 IntRect parentBox = parentRenderBox->absoluteContentBox();
418 bounds.setHeight(std::min(parentBox.width(), std::min(parentBox.height(), bounds.height())));
423 bounds.setY(parentBox.y() + (parentBox.height() - bounds.height() + 1) / 2);
456 IntRect parentBox = parentRenderBox->absoluteContentBox();
459 bounds.setHeight(std::min(parentBox.width(), std::min(parentBox.height(), bounds.height())));
464 bounds.setY(parentBox.y() + (parentBox.height() - bounds.height() + 1) / 2)
    [all...]
RenderThemeWin.cpp 810 IntRect parentBox = parentRenderBox->absoluteContentBox();
813 bounds.setHeight(min(parentBox.width(), min(parentBox.height(), bounds.height())));
818 bounds.setY(parentBox.y() + (parentBox.height() - bounds.height() + 1) / 2);
860 IntRect parentBox = parentRenderBox->absoluteContentBox();
863 bounds.setHeight(min(parentBox.width(), min(parentBox.height(), bounds.height())));
868 bounds.setY(parentBox.y() + (parentBox.height() - bounds.height() + 1) / 2)
    [all...]
SVGInlineTextBox.cpp 60 InlineFlowBox* parentBox = parent();
62 while (parentBox && !parentBox->isRootInlineBox())
63 parentBox = parentBox->parent();
65 ASSERT(parentBox);
66 ASSERT(parentBox->isRootInlineBox());
68 if (!parentBox->isSVGRootInlineBox())
71 return static_cast<SVGRootInlineBox*>(parentBox);
RenderListItem.cpp 260 for (RenderBox* o = m_marker->parentBox(); o != this; o = o->parentBox()) {
300 o = o->parentBox();
RenderBlockLineLayout.cpp 217 InlineFlowBox* parentBox = 0;
223 parentBox = obj->isRenderInline() ? toRenderInline(obj)->lastLineBox() : toRenderBlock(obj)->lastLineBox();
231 if (!parentBox || parentBox->isConstructed() || parentBox->nextOnLine()) {
236 parentBox = static_cast<InlineFlowBox*>(newBox);
237 parentBox->setFirstLineStyleBit(firstLine);
242 result = parentBox;
248 parentBox->addToLine(childBox);
253 childBox = parentBox;
    [all...]
RenderBox.h 82 RenderBox* parentBox() const;
410 inline RenderBox* RenderBox::parentBox() const
RenderTableCell.cpp 177 offset.expand(-parentBox()->x(), -parentBox()->y());
241 r.move(-parentBox()->x(), -parentBox()->y()); // Rows are in the same coordinate space, so don't add their offset in.
    [all...]
RenderBox.cpp     [all...]

Completed in 79 milliseconds