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.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);
SVGTextLayoutAttributesBuilder.h 73 unsigned 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;
258 m_textLength.value = SVGLength::construct(LengthModeOther, value, parseError, ForbidNegativeLengths);
277 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; }
161 int m_textLength;
225 int length() const { return m_textLength; }
230 if (!m_textLength)
235 m_textContainer.prependTo(output, m_textOffset, m_textLength);
269 String m_textContainer; // We're interested in the range [m_textOffset, m_textOffset + m_textLength) of m_textContainer.
271 int m_textLength;
TextIterator.cpp 238 , m_textLength(0)
316 m_textLength = 0;
701 m_textLength = m_text.length();
702 m_lastCharacter = m_text[m_textLength - 1];
707 m_textLength = 0;
    [all...]

Completed in 544 milliseconds