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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderOverflowTest.cpp 75 EXPECT_EQ(initialVisualOverflow(), m_overflow.visualOverflowRect());
103 EXPECT_EQ(initialVisualOverflow(), m_overflow.visualOverflowRect());
115 EXPECT_EQ(LayoutRect(0, -50, 160, 150), m_overflow.visualOverflowRect());
121 EXPECT_EQ(initialVisualOverflow(), m_overflow.visualOverflowRect());
130 EXPECT_EQ(LayoutRect(0, 0, 200, 200), m_overflow.visualOverflowRect());
184 EXPECT_EQ(LayoutRect(500, 100, 100, 100), m_overflow.visualOverflowRect());
InlineFlowBox.h 252 LayoutRect visualOverflowRect(LayoutUnit lineTop, LayoutUnit lineBottom) const
254 return m_overflow ? m_overflow->visualOverflowRect() : enclosingLayoutRect(frameRectIncludingLineHeight(lineTop, lineBottom));
256 LayoutUnit logicalLeftVisualOverflow() const { return m_overflow ? (isHorizontal() ? m_overflow->visualOverflowRect().x() : m_overflow->visualOverflowRect().y()) : static_cast<LayoutUnit>(logicalLeft()); }
257 LayoutUnit logicalRightVisualOverflow() const { return m_overflow ? (isHorizontal() ? m_overflow->visualOverflowRect().maxX() : m_overflow->visualOverflowRect().maxY()) : static_cast<LayoutUnit>(ceilf(logicalRight())); }
261 return isHorizontal() ? m_overflow->visualOverflowRect().y() : m_overflow->visualOverflowRect().x();
267 return isHorizontal() ? m_overflow->visualOverflowRect().maxY() : m_overflow->visualOverflowRect().maxX()
    [all...]
RenderMultiColumnSet.cpp 289 overflowRect.shiftXEdgeTo(min(flowThread()->visualOverflowRect().x(), portionRect.x()));
296 overflowRect.shiftMaxXEdgeTo(max(flowThread()->visualOverflowRect().maxX(), portionRect.maxX()));
304 overflowRect.shiftYEdgeTo(min(flowThread()->visualOverflowRect().y(), portionRect.y()));
311 overflowRect.shiftMaxYEdgeTo(max(flowThread()->visualOverflowRect().maxY(), portionRect.maxY()));
RenderEmbeddedObject.cpp 131 page->addRelevantUnpaintedObject(this, visualOverflowRect());
137 page->addRelevantRepaintedObject(this, visualOverflowRect());
RenderVideo.cpp 190 page->addRelevantUnpaintedObject(this, visualOverflowRect());
197 page->addRelevantUnpaintedObject(this, visualOverflowRect());
RenderReplaced.cpp 186 LayoutUnit top = adjustedPaintOffset.y() + visualOverflowRect().y();
187 LayoutUnit bottom = adjustedPaintOffset.y() + visualOverflowRect().maxY();
197 if (adjustedPaintOffset.x() + visualOverflowRect().x() >= localRepaintRect.maxX() || adjustedPaintOffset.x() + visualOverflowRect().maxX() <= localRepaintRect.x())
566 LayoutRect r = unionRect(localSelectionRect(false), visualOverflowRect());
RenderBox.h 185 virtual LayoutRect visualOverflowRect() const { return m_overflow ? m_overflow->visualOverflowRect() : borderBoxRect(); }
186 LayoutUnit logicalLeftVisualOverflow() const { return style()->isHorizontalWritingMode() ? visualOverflowRect().x() : visualOverflowRect().y(); }
187 LayoutUnit logicalRightVisualOverflow() const { return style()->isHorizontalWritingMode() ? visualOverflowRect().maxX() : visualOverflowRect().maxY(); }
547 bool hasVisualOverflow() const { return m_overflow && !borderBoxRect().contains(m_overflow->visualOverflowRect()); }
    [all...]
RenderTable.cpp 524 movedSectionLogicalTop = min(logicalHeight(), section->logicalTop()) + (style()->isHorizontalWritingMode() ? section->visualOverflowRect().y() : section->visualOverflowRect().x());
563 repaintRectangle(LayoutRect(visualOverflowRect().x(), movedSectionLogicalTop, visualOverflowRect().width(), visualOverflowRect().maxY() - movedSectionLogicalTop));
565 repaintRectangle(LayoutRect(movedSectionLogicalTop, visualOverflowRect().y(), visualOverflowRect().maxX() - movedSectionLogicalTop, visualOverflowRect().height()));
632 LayoutRect overflowBox = visualOverflowRect();
    [all...]
RenderDetailsMarker.cpp 122 LayoutRect overflowRect(visualOverflowRect());
RenderNamedFlowThread.cpp 331 && ( (isHorizontalWritingMode() && visualOverflowRect().maxY() > clientBoxRect().maxY())
332 || (!isHorizontalWritingMode() && visualOverflowRect().maxX() > clientBoxRect().maxX())))
333 height = isHorizontalWritingMode() ? visualOverflowRect().maxY() : visualOverflowRect().maxX();
RenderOverflow.h 50 const LayoutRect visualOverflowRect() const { return m_visualOverflow; }
RenderImage.cpp 296 page->addRelevantUnpaintedObject(this, visualOverflowRect());
362 page->addRelevantUnpaintedObject(this, visualOverflowRect());
RenderTableCell.cpp 345 LayoutPoint location(max<LayoutUnit>(left, -visualOverflowRect().x()), max<LayoutUnit>(top, -visualOverflowRect().y()));
346 LayoutRect r(-location.x(), -location.y(), location.x() + max(width() + right, visualOverflowRect().maxX()), location.y() + max(height() + bottom, visualOverflowRect().maxY()));
    [all...]
RenderRegion.cpp 107 LayoutRect flowThreadOverflow = m_flowThread->visualOverflowRect();
InlineFlowBox.cpp     [all...]
RenderBox.cpp     [all...]
RenderListMarker.cpp     [all...]
RenderLayer.cpp     [all...]
RenderBlockLineLayout.cpp     [all...]
RenderBlock.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGBlock.h 33 virtual LayoutRect visualOverflowRect() const OVERRIDE FINAL;
RenderSVGBlock.cpp 36 LayoutRect RenderSVGBlock::visualOverflowRect() const
RenderSVGRoot.cpp 283 page->addRelevantUnpaintedObject(this, visualOverflowRect());
289 page->addRelevantRepaintedObject(this, visualOverflowRect());

Completed in 565 milliseconds