Searched refs:characterAt (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DTextIterator.h91 UChar characterAt(unsigned index) const;
336 UChar characterAt(unsigned index) const { return m_textIterator.characterAt(m_runOffset + index); } function in class:blink::CharacterIterator
394 UChar characterAt(unsigned index) const;
H A DPlainTextRange.cpp109 if (len == 1 && (it.characterAt(0) == '\n' || it.isInsideReplacedElement())) {
H A DTextIterator.cpp561 UChar TextIterator::characterAt(unsigned index) const function in class:blink::TextIterator
1885 if (isSpaceOrNewline(m_textIterator.characterAt(m_textIterator.length() - 1)))
1894 if (m_textIterator.atEnd() || !m_textIterator.length() || isSpaceOrNewline(m_textIterator.characterAt(0))) {
1918 UChar WordAwareIterator::characterAt(unsigned index) const function in class:blink::WordAwareIterator
1922 return m_textIterator.characterAt(index);
H A DTextCheckingHelper.cpp245 if (!(length == 1 && it.characterAt(0) == ' ')) {
H A DVisibleSelection.cpp318 UChar c = charIt.characterAt(0);
H A DVisibleUnits.cpp597 if (charIt.characterAt(0) == '\n') {
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineIterator.h91 && !toRenderText(m_obj)->isWordBreak() && toRenderText(m_obj)->characterAt(m_pos) == '\n';
99 UChar characterAt(unsigned) const;
405 inline UChar InlineIterator::characterAt(unsigned index) const function in class:blink::InlineIterator
410 return toRenderText(m_obj)->characterAt(index);
415 return characterAt(m_pos);
423 return characterAt(m_pos - 1);
H A DRenderText.h82 UChar characterAt(unsigned) const;
222 inline UChar RenderText::characterAt(unsigned i) const
H A DRenderBlockLineLayout.cpp420 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));
H A DInlineFlowBox.cpp389 if (needsWordSpacing && isSpaceOrNewline(rt.characterAt(text->start())))
391 needsWordSpacing = !isSpaceOrNewline(rt.characterAt(text->end()));
H A DRenderText.cpp1015 if (isBreakable(breakIterator, j, nextBreakable) && characterAt(j - 1) != softHyphen)
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextLayoutAttributesBuilder.cpp95 UChar currentCharacter = text->characterAt(textPosition);
H A DSVGTextLayoutEngine.cpp494 UChar currentCharacter = text.characterAt(m_visualCharacterOffset);
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DBreakingContextInlineHeaders.h397 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)
848 UChar c = nextText->characterAt(0);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DWTFString.h421 UChar characterAt(unsigned index) const function in class:WTF::String

Completed in 924 milliseconds