HomeSort by relevance Sort by last modified time
    Searched defs:lastCharacter (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngineSpacing.cpp 88 UChar lastCharacter = m_lastCharacter;
95 if (currentCharacter && lastCharacter && m_font.fontDescription().wordSpacing()) {
96 if (Character::treatAsSpace(currentCharacter) && !Character::treatAsSpace(lastCharacter))
SVGTextLayoutAttributesBuilder.cpp 48 UChar lastCharacter = ' ';
49 collectTextPositioningElements(textRoot, lastCharacter);
68 UChar lastCharacter = ' ';
69 collectTextPositioningElements(textRoot, lastCharacter);
86 static inline void processRenderSVGInlineText(RenderSVGInlineText* text, unsigned& atCharacter, UChar& lastCharacter)
96 if (currentCharacter == ' ' && lastCharacter == ' ')
99 lastCharacter = currentCharacter;
104 void SVGTextLayoutAttributesBuilder::collectTextPositioningElements(RenderObject* start, UChar& lastCharacter)
110 processRenderSVGInlineText(toRenderSVGInlineText(child), m_textLength, lastCharacter);
122 collectTextPositioningElements(child, lastCharacter);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextBreakIterator.h 82 UChar lastCharacter() const
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
BreakingContextInlineHeaders.h 488 inline void nextCharacter(UChar& currentCharacter, UChar& lastCharacter, UChar& secondToLastCharacter)
490 secondToLastCharacter = lastCharacter;
491 lastCharacter = currentCharacter;
600 UChar lastCharacter = m_renderTextInfo.m_lineBreakIterator.lastCharacter();
643 nextCharacter(c, lastCharacter, secondToLastCharacter);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
HarfBuzzShaper.cpp 640 UChar32 lastCharacter = character;
655 if (lastCharacter == zeroWidthJoiner)
660 lastCharacter = character;
    [all...]

Completed in 459 milliseconds