Searched refs:ETextAlign (Results 1 – 14 of 14) sorted by relevance
54 ETextAlign RenderRubyText::textAlignmentForLine(bool endsWithSoftBreak) const in textAlignmentForLine()56 ETextAlign textAlign = style()->textAlign(); in textAlignmentForLine()66 ETextAlign textAlign = style()->textAlign(); in adjustInlineDirectionLineBounds()
50 virtual ETextAlign textAlignmentForLine(bool endsWithSoftBreak) const;
52 virtual ETextAlign textAlignmentForLine(bool endsWithSoftBreak) const;
197 ETextAlign RenderRubyBase::textAlignmentForLine(bool /* endsWithSoftBreak */) const in textAlignmentForLine()
367 ETextAlign RenderBlock::textAlignmentForLine(bool endsWithSoftBreak) const in textAlignmentForLine()369 ETextAlign alignment = style()->textAlign(); in textAlignmentForLine()431 ETextAlign textAlign = textAlignmentForLine(!reachedEnd && !lineBox->endsWithBreak()); in computeInlineDirectionPositionsForLine()
341 ETextAlign actualAlignment = itemStyle->textAlign(); in itemOffsetForAlignment()
280 virtual ETextAlign textAlignmentForLine(bool endsWithSoftBreak) const;
316 enum ETextAlign { enum
483 ETextAlign textAlign() const { return static_cast<ETextAlign>(inherited_flags._text_align); } in textAlign()932 void setTextAlign(ETextAlign v) { inherited_flags._text_align = v; } in setTextAlign()1262 static ETextAlign initialTextAlign() { return TAAUTO; } in initialTextAlign()
1616 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(ETextAlign e) in CSSPrimitiveValue()1654 template<> inline CSSPrimitiveValue::operator ETextAlign() const in ETextAlign() function1662 return static_cast<ETextAlign>(m_value.ident - CSSValueWebkitAuto); in ETextAlign()
36371 …Fixed the bug by introducing new enum values to ETextAlign: TASTART and TAEND. These two values wi…36376 (WebCore::CSSPrimitiveValue::operator ETextAlign): Ditto.36385 * rendering/style/RenderStyle.h: ETextAlign now has 10 values and requires 4 bits.36386 * rendering/style/RenderStyleConstants.h: Added TASTART and TAEND to ETextAlign.
6488 4 bits to 3 bits since ETextAlign has 8 items.81275 (WebCore::CSSPrimitiveValue::operator ETextAlign):
49533 (DOM::stringForTextAlign): Helper to turn an ETextAlign into a computed value string.
64486 Need to handle CSSValueAuto in CSSPrimitiveValue::operator ETextAlign()