Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/editing/
DTextIterator.h91 UChar characterAt(unsigned index) const;
336 …UChar characterAt(unsigned index) const { return m_textIterator.characterAt(m_runOffset + index); } in characterAt() function
394 UChar characterAt(unsigned index) const;
DPlainTextRange.cpp109 if (len == 1 && (it.characterAt(0) == '\n' || it.isInsideReplacedElement())) { in createRangeFor()
DTextIterator.cpp561 UChar TextIterator::characterAt(unsigned index) const in characterAt() function in blink::TextIterator
1885 if (isSpaceOrNewline(m_textIterator.characterAt(m_textIterator.length() - 1))) in advance()
1894 …tIterator.atEnd() || !m_textIterator.length() || isSpaceOrNewline(m_textIterator.characterAt(0))) { in advance()
1918 UChar WordAwareIterator::characterAt(unsigned index) const in characterAt() function in blink::WordAwareIterator
1922 return m_textIterator.characterAt(index); in characterAt()
DTextCheckingHelper.cpp245 if (!(length == 1 && it.characterAt(0) == ' ')) { in findFirstMisspelling()
DVisibleSelection.cpp318 UChar c = charIt.characterAt(0); in appendTrailingWhitespace()
DVisibleUnits.cpp597 if (charIt.characterAt(0) == '\n') { in nextBoundary()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DInlineIterator.h91 … && !toRenderText(m_obj)->isWordBreak() && toRenderText(m_obj)->characterAt(m_pos) == '\n'; in atTextParagraphSeparator()
99 UChar characterAt(unsigned) const;
405 inline UChar InlineIterator::characterAt(unsigned index) const in characterAt() function
410 return toRenderText(m_obj)->characterAt(index); in characterAt()
415 return characterAt(m_pos); in current()
423 return characterAt(m_pos - 1); in previousInSameNode()
DRenderText.h82 UChar characterAt(unsigned) const;
222 inline UChar RenderText::characterAt(unsigned i) const in characterAt() function
DRenderBlockLineLayout.cpp420 … if (i > 0 && wordLength == 1 && renderer->characterAt(wordMeasurement.startOffset) == ' ') in setLogicalWidthForTextRun()
608 … if (!r->m_start && needsWordSpacing && isSpaceOrNewline(rt->characterAt(r->m_start))) in computeInlineDirectionPositionsForSegment()
610 needsWordSpacing = !isSpaceOrNewline(rt->characterAt(r->m_stop - 1)); in computeInlineDirectionPositionsForSegment()
DInlineFlowBox.cpp389 if (needsWordSpacing && isSpaceOrNewline(rt.characterAt(text->start()))) in placeBoxRangeInInlineDirection()
391 needsWordSpacing = !isSpaceOrNewline(rt.characterAt(text->end())); in placeBoxRangeInInlineDirection()
DRenderText.cpp1015 if (isBreakable(breakIterator, j, nextBreakable) && characterAt(j - 1) != softHyphen) in computePreferredLogicalWidths()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGTextLayoutAttributesBuilder.cpp95 UChar currentCharacter = text->characterAt(textPosition); in processRenderSVGInlineText()
DSVGTextLayoutEngine.cpp494 UChar currentCharacter = text.characterAt(m_visualCharacterOffset); in layoutTextOnLineOrPath()
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
DBreakingContextInlineHeaders.h397 UChar nextChar = nextText->characterAt(0); in shouldSkipWhitespaceAfterStartObject()
703 …neBreak.object())->textLength() && toRenderText(m_lineBreak.object())->characterAt(m_lineBreak.off… in handleText()
848 UChar c = nextText->characterAt(0); in commitAndUpdateLineBreakIfNeeded()
/external/chromium_org/third_party/WebKit/Source/wtf/text/
DWTFString.h421 UChar characterAt(unsigned index) const in characterAt() function