Home | History | Annotate | Download | only in rendering

Lines Matching refs:isHorizontal

53               bool dirty, bool extracted, bool isHorizontal, InlineBox* next, InlineBox* prev, InlineFlowBox* parent)
60 , m_bitfields(firstLine, constructed, dirty, extracted, isHorizontal)
80 if (isHorizontal())
87 if (isHorizontal())
94 if (isHorizontal())
135 bool isHorizontal() const { return m_bitfields.isHorizontal(); }
136 void setIsHorizontal(bool isHorizontal) { m_bitfields.setIsHorizontal(isHorizontal); }
203 float width() const { return isHorizontal() ? logicalWidth() : hasVirtualLogicalHeight() ? virtualLogicalHeight() : logicalHeight(); }
204 float height() const { return isHorizontal() ? hasVirtualLogicalHeight() ? virtualLogicalHeight() : logicalHeight() : logicalWidth(); }
210 float logicalLeft() const { return isHorizontal() ? m_topLeft.x() : m_topLeft.y(); }
214 if (isHorizontal())
225 float logicalTop() const { return isHorizontal() ? m_topLeft.y() : m_topLeft.x(); }
229 if (isHorizontal())
242 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()); }
309 InlineBoxBitfields(bool firstLine = false, bool constructed = false, bool dirty = false, bool extracted = false, bool isHorizontal = true)
316 , m_isHorizontal(isHorizontal)
344 ADD_BOOLEAN_BITFIELD(isHorizontal, IsHorizontal);