Searched refs:m_frameRect (Results 1 – 6 of 6) sorted by relevance
64 LayoutUnit x() const { ASSERT(isPlaced()); return m_frameRect.x(); } in x()65 LayoutUnit maxX() const { ASSERT(isPlaced()); return m_frameRect.maxX(); } in maxX()66 LayoutUnit y() const { ASSERT(isPlaced()); return m_frameRect.y(); } in y()67 LayoutUnit maxY() const { ASSERT(isPlaced()); return m_frameRect.maxY(); } in maxY()68 LayoutUnit width() const { return m_frameRect.width(); } in width()69 LayoutUnit height() const { return m_frameRect.height(); } in height()71 void setX(LayoutUnit x) { ASSERT(!isInPlacedTree()); m_frameRect.setX(x); } in setX()72 void setY(LayoutUnit y) { ASSERT(!isInPlacedTree()); m_frameRect.setY(y); } in setY()73 void setWidth(LayoutUnit width) { ASSERT(!isInPlacedTree()); m_frameRect.setWidth(width); } in setWidth()74 void setHeight(LayoutUnit height) { ASSERT(!isInPlacedTree()); m_frameRect.setHeight(height); } in setHeight()[all …]
90 LayoutUnit x() const { return m_frameRect.x(); } in x()91 LayoutUnit y() const { return m_frameRect.y(); } in y()92 LayoutUnit width() const { return m_frameRect.width(); } in width()93 LayoutUnit height() const { return m_frameRect.height(); } in height()95 int pixelSnappedWidth() const { return m_frameRect.pixelSnappedWidth(); } in pixelSnappedWidth()96 int pixelSnappedHeight() const { return m_frameRect.pixelSnappedHeight(); } in pixelSnappedHeight()103 void setX(LayoutUnit x) { m_frameRect.setX(x); } in setX()104 void setY(LayoutUnit y) { m_frameRect.setY(y); } in setY()105 void setWidth(LayoutUnit width) { m_frameRect.setWidth(width); } in setWidth()106 void setHeight(LayoutUnit height) { m_frameRect.setHeight(height); } in setHeight()[all …]
67 , m_frameRect(frameRect) in FloatingObject()95 …gObject> cloneObject = adoptPtr(new FloatingObject(renderer(), type(), m_frameRect, m_shouldPaint,… in unsafeClone()
2112 if (oldRect.location() != m_frameRect.location()) { in repaintDuringLayoutIfMoved()2113 LayoutRect newRect = m_frameRect; in repaintDuringLayoutIfMoved()2116 m_frameRect = oldRect; in repaintDuringLayoutIfMoved()2119 m_frameRect = newRect; in repaintDuringLayoutIfMoved()
41 , m_frameRect(frameRect) in ScrollbarGroup()130 m_frameRect = frameRect; in setFrameRect()135 return m_frameRect; in scrollableAreaBoundingBox()
82 WebCore::IntRect m_frameRect; variable