Home | History | Annotate | Download | only in rendering

Lines Matching refs:m_topLeft

55         , m_topLeft(topLeft)
190 void setX(float x) { m_topLeft.setX(x); }
191 float x() const { return m_topLeft.x(); }
192 float left() const { return m_topLeft.x(); }
195 void setY(float y) { m_topLeft.setY(y); }
196 float y() const { return m_topLeft.y(); }
197 float top() const { return m_topLeft.y(); }
199 const FloatPoint& topLeft() const { return m_topLeft; }
208 float logicalLeft() const { return isHorizontal() ? m_topLeft.x() : m_topLeft.y(); }
223 float logicalTop() const { return isHorizontal() ? m_topLeft.y() : m_topLeft.x(); }
240 FloatRect logicalFrameRect() const { return isHorizontal() ? FloatRect(m_topLeft.x(), m_topLeft.y(), m_logicalWidth, logicalHeight()) : FloatRect(m_topLeft.y(), m_topLeft.x(), m_logicalWidth, logicalHeight()); }
307 FloatPoint m_topLeft;