OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_chunkStyle
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/rendering/svg/
SVGTextChunk.h
49
bool isVerticalText() const { return
m_chunkStyle
& VerticalText; }
55
bool hasDesiredTextLength() const { return m_desiredTextLength > 0 && ((
m_chunkStyle
& LengthAdjustSpacing) || (
m_chunkStyle
& LengthAdjustSpacingAndGlyphs)); }
56
bool hasTextAnchor() const { return
m_chunkStyle
& RightToLeftText ? !(
m_chunkStyle
& EndAnchor) : (
m_chunkStyle
& MiddleAnchor) || (
m_chunkStyle
& EndAnchor); }
57
bool hasLengthAdjustSpacing() const { return
m_chunkStyle
& LengthAdjustSpacing; }
58
bool hasLengthAdjustSpacingAndGlyphs() const { return
m_chunkStyle
& LengthAdjustSpacingAndGlyphs; }
64
unsigned
m_chunkStyle
;
[
all
...]
SVGTextChunk.cpp
31
:
m_chunkStyle
(chunkStyle)
53
if (
m_chunkStyle
& VerticalText)
64
if (
m_chunkStyle
& VerticalText)
76
if (
m_chunkStyle
& MiddleAnchor)
78
if (
m_chunkStyle
& EndAnchor)
79
return
m_chunkStyle
& RightToLeftText ? 0 : -length;
80
return
m_chunkStyle
& RightToLeftText ? -length : 0;
Completed in 493 milliseconds