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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.h 91 UChar characterAt(unsigned index) const;
336 UChar characterAt(unsigned index) const { return m_textIterator.characterAt(m_runOffset + index); }
394 UChar characterAt(unsigned index) const;
PlainTextRange.cpp 109 if (len == 1 && (it.characterAt(0) == '\n' || it.isInsideReplacedElement())) {
TextIterator.cpp 561 UChar TextIterator::characterAt(unsigned index) const
    [all...]
TextCheckingHelper.cpp 245 if (!(length == 1 && it.characterAt(0) == ' ')) {
VisibleSelection.cpp 318 UChar c = charIt.characterAt(0);
VisibleUnits.cpp 597 if (charIt.characterAt(0) == '\n') {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineIterator.h 91 && !toRenderText(m_obj)->isWordBreak() && toRenderText(m_obj)->characterAt(m_pos) == '\n';
99 UChar characterAt(unsigned) const;
405 inline UChar InlineIterator::characterAt(unsigned index) const
410 return toRenderText(m_obj)->characterAt(index);
415 return characterAt(m_pos);
423 return characterAt(m_pos - 1);
RenderText.h 82 UChar characterAt(unsigned) const;
222 inline UChar RenderText::characterAt(unsigned i) const
RenderBlockLineLayout.cpp 420 if (i > 0 && wordLength == 1 && renderer->characterAt(wordMeasurement.startOffset) == ' ')
608 if (!r->m_start && needsWordSpacing && isSpaceOrNewline(rt->characterAt(r->m_start)))
610 needsWordSpacing = !isSpaceOrNewline(rt->characterAt(r->m_stop - 1));
    [all...]
InlineFlowBox.cpp 389 if (needsWordSpacing && isSpaceOrNewline(rt.characterAt(text->start())))
391 needsWordSpacing = !isSpaceOrNewline(rt.characterAt(text->end()));
    [all...]
RenderText.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutAttributesBuilder.cpp 95 UChar currentCharacter = text->characterAt(textPosition);
SVGTextLayoutEngine.cpp 494 UChar currentCharacter = text.characterAt(m_visualCharacterOffset);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
BreakingContextInlineHeaders.h 397 UChar nextChar = nextText->characterAt(0);
703 if (m_lineBreak.object() && m_lineBreak.offset() && m_lineBreak.object()->isText() && toRenderText(m_lineBreak.object())->textLength() && toRenderText(m_lineBreak.object())->characterAt(m_lineBreak.offset() - 1) == softHyphen (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.h 421 UChar characterAt(unsigned index) const

Completed in 437 milliseconds