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

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
Latin1TextIterator.h 31 // The passed in LChar pointer starts at 'currentCharacter'. The iterator operates on the range [currentCharacter, lastCharacter].
32 // 'endCharacter' denotes the maximum length of the UChar array, which might exceed 'lastCharacter'.
33 Latin1TextIterator(const LChar* characters, int currentCharacter, int lastCharacter, int /*endCharacter*/)
36 , m_lastCharacter(lastCharacter)
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLEntityTable.h 35 LChar lastCharacter() const;
HTMLEntityParser.cpp 145 if (entitySearch.mostRecentMatch()->lastCharacter() == ';'
  /external/chromium_org/third_party/WebKit/Source/platform/text/
SurrogatePairAwareTextIterator.cpp 33 SurrogatePairAwareTextIterator::SurrogatePairAwareTextIterator(const UChar* characters, int currentCharacter, int lastCharacter, int endCharacter)
36 , m_lastCharacter(lastCharacter)
SurrogatePairAwareTextIterator.h 32 // The passed in UChar pointer starts at 'currentCharacter'. The iterator operatoes on the range [currentCharacter, lastCharacter].
33 // 'endCharacter' denotes the maximum length of the UChar array, which might exceed 'lastCharacter'.
34 SurrogatePairAwareTextIterator(const UChar*, int currentCharacter, int lastCharacter, int endCharacter);
TextBreakIterator.h 82 UChar lastCharacter() const
  /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...]
SVGTextLayoutAttributesBuilder.h 69 void collectTextPositioningElements(RenderObject*, UChar& lastCharacter);
  /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/core/rendering/
break_lines.cpp 153 CharacterType lastCh = pos > 0 ? str[pos - 1] : static_cast<CharacterType>(lazyBreakIterator.lastCharacter());
  /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 506 milliseconds