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

/external/webkit/WebCore/rendering/
H A DRenderMedia.cpp595 int RenderMedia::leftmostPosition(bool includeOverflowInterior, bool includeSelf) const function in class:WebCore::RenderMedia
597 int left = RenderImage::leftmostPosition(includeOverflowInterior, includeSelf);
601 return min(left, m_controlsShadowRoot->renderBox()->x() + m_controlsShadowRoot->renderBox()->leftmostPosition(includeOverflowInterior, includeSelf));
H A DRenderTableSection.cpp780 int RenderTableSection::leftmostPosition(bool includeOverflowInterior, bool includeSelf) const function in class:WebCore::RenderTableSection
782 int left = RenderBox::leftmostPosition(includeOverflowInterior, includeSelf);
790 left = min(left, cell->x() + cell->leftmostPosition(false));
H A DRenderBox.cpp272 return clientWidth() - min(0, leftmostPosition(true, false) - borderLeft());
2765 int RenderBox::leftmostPosition(bool /*includeOverflowInterior*/, bool includeSelf) const function in class:WebCore::RenderBox
H A DRenderBlock.cpp2873 int RenderBlock::leftmostPosition(bool includeOverflowInterior, bool includeSelf) const function in class:WebCore::RenderBlock
2891 left = min(left, childBox->x() + childBox->leftmostPosition(false));
2919 int lp = r->x() + r->leftmostPosition(false);
2938 int lp = r->m_left + r->m_renderer->marginLeft() + r->m_renderer->leftmostPosition(false);

Completed in 274 milliseconds