HomeSort by relevance Sort by last modified time
    Searched refs:m_chunkStyle (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextChunk.h 48 bool isVerticalText() const { return m_chunkStyle & VerticalText; }
54 bool hasDesiredTextLength() const { return m_desiredTextLength > 0 && ((m_chunkStyle & LengthAdjustSpacing) || (m_chunkStyle & LengthAdjustSpacingAndGlyphs)); }
55 bool hasTextAnchor() const { return m_chunkStyle & RightToLeftText ? !(m_chunkStyle & EndAnchor) : (m_chunkStyle & MiddleAnchor) || (m_chunkStyle & EndAnchor); }
56 bool hasLengthAdjustSpacing() const { return m_chunkStyle & LengthAdjustSpacing; }
57 bool hasLengthAdjustSpacingAndGlyphs() const { return m_chunkStyle & LengthAdjustSpacingAndGlyphs; }
63 unsigned m_chunkStyle;
    [all...]
SVGTextChunk.cpp 30 : m_chunkStyle(chunkStyle)
52 if (m_chunkStyle & VerticalText)
63 if (m_chunkStyle & VerticalText)
75 if (m_chunkStyle & MiddleAnchor)
77 if (m_chunkStyle & EndAnchor)
78 return m_chunkStyle & RightToLeftText ? 0 : -length;
79 return m_chunkStyle & RightToLeftText ? -length : 0;

Completed in 161 milliseconds