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 …]
65 LayoutUnit x() const { return m_frameRect.x(); } in x()66 LayoutUnit y() const { return m_frameRect.y(); } in y()67 LayoutUnit width() const { return m_frameRect.width(); } in width()68 LayoutUnit height() const { return m_frameRect.height(); } in height()70 int pixelSnappedWidth() const { return m_frameRect.pixelSnappedWidth(); } in pixelSnappedWidth()71 int pixelSnappedHeight() const { return m_frameRect.pixelSnappedHeight(); } in pixelSnappedHeight()78 void setX(LayoutUnit x) { m_frameRect.setX(x); } in setX()79 void setY(LayoutUnit y) { m_frameRect.setY(y); } in setY()80 void setWidth(LayoutUnit width) { m_frameRect.setWidth(width); } in setWidth()81 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()
2207 if (oldRect.location() != m_frameRect.location()) { in repaintDuringLayoutIfMoved()2208 LayoutRect newRect = m_frameRect; in repaintDuringLayoutIfMoved()2211 m_frameRect = oldRect; in repaintDuringLayoutIfMoved()2214 m_frameRect = newRect; in repaintDuringLayoutIfMoved()
41 , m_frameRect(frameRect) in ScrollbarGroup()136 m_frameRect = frameRect; in setFrameRect()141 return m_frameRect; in scrollableAreaBoundingBox()
83 WebCore::IntRect m_frameRect; variable