/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
D | SVGTextLayoutAttributesBuilder.cpp | 47 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()
|
D | SVGTextLayoutEngineSpacing.cpp | 93 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()
|
D | SVGTextMetricsBuilder.cpp | 116 , lastCharacter(0) in MeasureTextData() 125 UChar lastCharacter; member 150 …aracter == ' ' && !preserveWhiteSpace && (!data->hasLastCharacter || data->lastCharacter == ' ')) { in measureTextRenderer() 171 data->lastCharacter = currentCharacter; in measureTextRenderer()
|
D | SVGTextLayoutAttributesBuilder.h | 69 void collectTextPositioningElements(RenderObject*, UChar& lastCharacter);
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
D | Latin1TextIterator.h | 33 …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/ |
D | SurrogatePairAwareTextIterator.cpp | 33 …rAwareTextIterator(const UChar* characters, int currentCharacter, int lastCharacter, int endCharac… in SurrogatePairAwareTextIterator() argument 36 , m_lastCharacter(lastCharacter) in SurrogatePairAwareTextIterator()
|
D | SurrogatePairAwareTextIterator.h | 34 …SurrogatePairAwareTextIterator(const UChar*, int currentCharacter, int lastCharacter, int endChara…
|
D | TextBreakIterator.h | 80 UChar lastCharacter() const in lastCharacter() function
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
D | HTMLEntityTable.h | 34 UChar lastCharacter() const { return entity[length - 1]; } in lastCharacter() function
|
D | HTMLEntityParser.cpp | 144 if (entitySearch.mostRecentMatch()->lastCharacter() == ';' in consumeNamedEntity()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/ |
D | BreakingContextInlineHeaders.h | 639 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/ |
D | break_lines.cpp | 153 …pe lastCh = pos > 0 ? str[pos - 1] : static_cast<CharacterType>(lazyBreakIterator.lastCharacter()); in nextBreakablePosition()
|