Home | History | Annotate | Download | only in rendering

Lines Matching refs:firstLine

53     InlineBox(RenderObject& obj, FloatPoint topLeft, float logicalWidth, bool firstLine, bool constructed,
61 , m_bitfields(firstLine, constructed, dirty, extracted, isHorizontal)
150 void setFirstLineStyleBit(bool firstLine) { m_bitfields.setFirstLine(firstLine); }
151 bool isFirstLineStyle() const { return m_bitfields.firstLine(); }
279 EVerticalAlign verticalAlign() const { return renderer().style(m_bitfields.firstLine())->verticalAlign(); }
310 InlineBoxBitfields(bool firstLine = false, bool constructed = false, bool dirty = false, bool extracted = false, bool isHorizontal = true)
311 : m_firstLine(firstLine)
332 ADD_BOOLEAN_BITFIELD(firstLine, FirstLine);