Home | History | Annotate | Download | only in rendering

Lines Matching refs:isHorizontal

50               bool dirty, bool extracted, bool isHorizontal, InlineBox* next, InlineBox* prev, InlineFlowBox* parent)
57 , m_bitfields(firstLine, constructed, dirty, extracted, isHorizontal)
77 if (isHorizontal())
84 if (isHorizontal())
91 if (isHorizontal())
133 bool isHorizontal() const { return m_bitfields.isHorizontal(); }
134 void setIsHorizontal(bool isHorizontal) { m_bitfields.setIsHorizontal(isHorizontal); }
201 float width() const { return isHorizontal() ? logicalWidth() : logicalHeight(); }
202 float height() const { return isHorizontal() ? logicalHeight() : logicalWidth(); }
208 float logicalLeft() const { return isHorizontal() ? m_topLeft.x() : m_topLeft.y(); }
212 if (isHorizontal())
223 float logicalTop() const { return isHorizontal() ? m_topLeft.y() : m_topLeft.x(); }
227 if (isHorizontal())
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()); }
319 InlineBoxBitfields(bool firstLine = false, bool constructed = false, bool dirty = false, bool extracted = false, bool isHorizontal = true)
326 , m_isHorizontal(isHorizontal)
354 ADD_BOOLEAN_BITFIELD(isHorizontal, IsHorizontal);