Home
last modified time | relevance | path

Searched refs:ETextAlign (Results 1 – 14 of 14) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DRenderRubyText.cpp54 ETextAlign RenderRubyText::textAlignmentForLine(bool endsWithSoftBreak) const in textAlignmentForLine()
56 ETextAlign textAlign = style()->textAlign(); in textAlignmentForLine()
66 ETextAlign textAlign = style()->textAlign(); in adjustInlineDirectionLineBounds()
DRenderRubyText.h50 virtual ETextAlign textAlignmentForLine(bool endsWithSoftBreak) const;
DRenderRubyBase.h52 virtual ETextAlign textAlignmentForLine(bool endsWithSoftBreak) const;
DRenderRubyBase.cpp197 ETextAlign RenderRubyBase::textAlignmentForLine(bool /* endsWithSoftBreak */) const in textAlignmentForLine()
DRenderBlockLineLayout.cpp367 ETextAlign RenderBlock::textAlignmentForLine(bool endsWithSoftBreak) const in textAlignmentForLine()
369 ETextAlign alignment = style()->textAlign(); in textAlignmentForLine()
431 ETextAlign textAlign = textAlignmentForLine(!reachedEnd && !lineBox->endsWithBreak()); in computeInlineDirectionPositionsForLine()
DRenderListBox.cpp341 ETextAlign actualAlignment = itemStyle->textAlign(); in itemOffsetForAlignment()
DRenderBlock.h280 virtual ETextAlign textAlignmentForLine(bool endsWithSoftBreak) const;
/external/webkit/Source/WebCore/rendering/style/
DRenderStyleConstants.h316 enum ETextAlign { enum
DRenderStyle.h483 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()
/external/webkit/Source/WebCore/css/
DCSSPrimitiveValueMappings.h1616 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(ETextAlign e) in CSSPrimitiveValue()
1654 template<> inline CSSPrimitiveValue::operator ETextAlign() const in ETextAlign() function
1662 return static_cast<ETextAlign>(m_value.ident - CSSValueWebkitAuto); in ETextAlign()
/external/webkit/Source/WebCore/
DChangeLog36371 …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.
DChangeLog-2008-08-106488 4 bits to 3 bits since ETextAlign has 8 items.
81275 (WebCore::CSSPrimitiveValue::operator ETextAlign):
DChangeLog-2005-08-2349533 (DOM::stringForTextAlign): Helper to turn an ETextAlign into a computed value string.
DChangeLog-2010-12-0664486 Need to handle CSSValueAuto in CSSPrimitiveValue::operator ETextAlign()