Home
last modified time | relevance | path

Searched refs:lastCharacter (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGTextLayoutAttributesBuilder.cpp47 UChar lastCharacter = ' '; in buildLayoutAttributesForTextRenderer() local
48 collectTextPositioningElements(textRoot, lastCharacter); in buildLayoutAttributesForTextRenderer()
67 UChar lastCharacter = ' '; in buildLayoutAttributesForForSubtree() local
68 collectTextPositioningElements(textRoot, lastCharacter); in buildLayoutAttributesForForSubtree()
85 … processRenderSVGInlineText(RenderSVGInlineText* text, unsigned& atCharacter, UChar& lastCharacter) in processRenderSVGInlineText() argument
95 if (currentCharacter == ' ' && lastCharacter == ' ') in processRenderSVGInlineText()
98 lastCharacter = currentCharacter; in processRenderSVGInlineText()
103 …tLayoutAttributesBuilder::collectTextPositioningElements(RenderObject* start, UChar& lastCharacter) in collectTextPositioningElements() argument
109 processRenderSVGInlineText(toRenderSVGInlineText(child), m_textLength, lastCharacter); in collectTextPositioningElements()
121 collectTextPositioningElements(child, lastCharacter); in collectTextPositioningElements()
DSVGTextLayoutEngineSpacing.cpp93 UChar lastCharacter = m_lastCharacter; in calculateCSSKerningAndSpacing() local
100 if (currentCharacter && lastCharacter && m_font.wordSpacing()) { in calculateCSSKerningAndSpacing()
101 if (Font::treatAsSpace(currentCharacter) && !Font::treatAsSpace(lastCharacter)) in calculateCSSKerningAndSpacing()
DSVGTextMetricsBuilder.cpp116 , lastCharacter(0) in MeasureTextData()
125 UChar lastCharacter; member
150 …aracter == ' ' && !preserveWhiteSpace && (!data->hasLastCharacter || data->lastCharacter == ' ')) { in measureTextRenderer()
171 data->lastCharacter = currentCharacter; in measureTextRenderer()
DSVGTextLayoutAttributesBuilder.h69 void collectTextPositioningElements(RenderObject*, UChar& lastCharacter);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
DLatin1TextIterator.h33 …Latin1TextIterator(const LChar* characters, int currentCharacter, int lastCharacter, int /*endChar… in Latin1TextIterator() argument
36 , m_lastCharacter(lastCharacter) in Latin1TextIterator()
/external/chromium_org/third_party/WebKit/Source/platform/text/
DSurrogatePairAwareTextIterator.cpp33 …rAwareTextIterator(const UChar* characters, int currentCharacter, int lastCharacter, int endCharac… in SurrogatePairAwareTextIterator() argument
36 , m_lastCharacter(lastCharacter) in SurrogatePairAwareTextIterator()
DSurrogatePairAwareTextIterator.h34 …SurrogatePairAwareTextIterator(const UChar*, int currentCharacter, int lastCharacter, int endChara…
DTextBreakIterator.h80 UChar lastCharacter() const in lastCharacter() function
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DHTMLEntityTable.h34 UChar lastCharacter() const { return entity[length - 1]; } in lastCharacter() function
DHTMLEntityParser.cpp144 if (entitySearch.mostRecentMatch()->lastCharacter() == ';' in consumeNamedEntity()
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
DBreakingContextInlineHeaders.h639 inline void nextCharacter(UChar& currentCharacter, UChar& lastCharacter, UChar& secondToLastCharact… in nextCharacter() argument
641 secondToLastCharacter = lastCharacter; in nextCharacter()
642 lastCharacter = currentCharacter; in nextCharacter()
785 UChar lastCharacter = m_renderTextInfo.m_lineBreakIterator.lastCharacter(); in handleText() local
826 nextCharacter(c, lastCharacter, secondToLastCharacter); in handleText()
986 nextCharacter(c, lastCharacter, secondToLastCharacter); in handleText()
989 m_renderTextInfo.m_lineBreakIterator.setPriorContext(lastCharacter, secondToLastCharacter); in handleText()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
Dbreak_lines.cpp153 …pe lastCh = pos > 0 ? str[pos - 1] : static_cast<CharacterType>(lazyBreakIterator.lastCharacter()); in nextBreakablePosition()