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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutAttributesBuilder.h 73 unsigned m_textLength;
SVGTextLayoutAttributesBuilder.cpp 31 : m_textLength(0)
46 m_textLength = 0;
50 if (!m_textLength)
66 m_textLength = 0;
71 if (!m_textLength)
109 processRenderSVGInlineText(toRenderSVGInlineText(child), m_textLength, lastCharacter);
119 m_textPositions.append(TextPosition(element, m_textLength));
129 position.length = m_textLength - position.start;
139 TextPosition wholeTextPosition(outermostTextElement, 0, m_textLength);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTextContentElement.cpp 67 , m_textLength(LengthModeOther)
79 if (!ownerType->m_textLength.shouldSynchronize)
82 ownerType->m_textLength.synchronize(ownerType, textLengthPropertyInfo()->attributeName, value);
90 (ownerType, textLengthPropertyInfo(), ownerType->m_textLength.value);
97 m_textLength.value.newValueSpecifiedUnits(LengthTypeNumber, getComputedTextLength(), ASSERT_NO_EXCEPTION);
99 m_textLength.shouldSynchronize = true;
256 m_textLength.value = SVGLength::construct(LengthModeOther, value, parseError, ForbidNegativeLengths);
275 m_specifiedTextLength = m_textLength.value;
SVGTextContentElement.h 92 // as its getter needs special handling (return getComputedTextLength(), instead of m_textLength).
116 mutable SVGSynchronizableAnimatedProperty<SVGLength> m_textLength;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.h 95 int length() const { return m_textLength; }
167 int m_textLength;
229 int length() const { return m_textLength; }
236 if (!m_textLength)
241 m_textContainer.prependTo(output, m_textOffset, m_textLength);
275 String m_textContainer; // We're interested in the range [m_textOffset, m_textOffset + m_textLength) of m_textContainer.
277 int m_textLength;
TextIterator.cpp 248 , m_textLength(0)
319 m_textLength = 0;
768 m_textLength = m_text.length();
769 m_lastCharacter = m_text[m_textLength - 1];
774 m_textLength = 0;
    [all...]

Completed in 1881 milliseconds