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

  /external/webkit/Source/WebCore/html/parser/
HTMLEntityTable.h 34 UChar lastCharacter() const { return entity[length - 1]; }
HTMLEntityParser.cpp 235 if (entitySearch.mostRecentMatch()->lastCharacter() == ';'
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutAttributesBuilder.h 62 void collectTextPositioningElements(RenderObject*, unsigned& atCharacter, UChar& lastCharacter);
64 void propagateLayoutAttributes(RenderObject*, Vector<SVGTextLayoutAttributes>& allAttributes, unsigned& atCharacter, UChar& lastCharacter) const;
SVGTextLayoutEngineSpacing.cpp 79 const UChar* lastCharacter = m_lastCharacter;
86 if (currentCharacter && lastCharacter && m_font.wordSpacing()) {
87 if (Font::treatAsSpace(*currentCharacter) && !Font::treatAsSpace(*lastCharacter))
SVGTextLayoutAttributesBuilder.cpp 44 UChar lastCharacter = '\0';
45 collectTextPositioningElements(textRoot, atCharacter, lastCharacter);
57 lastCharacter = '\0';
58 propagateLayoutAttributes(textRoot, allAttributes, atCharacter, lastCharacter);
104 static inline void processRenderSVGInlineText(RenderSVGInlineText* text, unsigned& atCharacter, UChar& lastCharacter)
115 if (characterIsSpace(currentCharacter) && characterIsSpaceOrNull(lastCharacter))
118 lastCharacter = currentCharacter;
123 void SVGTextLayoutAttributesBuilder::collectTextPositioningElements(RenderObject* start, unsigned& atCharacter, UChar& lastCharacter)
129 processRenderSVGInlineText(toRenderSVGInlineText(child), atCharacter, lastCharacter);
141 collectTextPositioningElements(child, atCharacter, lastCharacter);
    [all...]

Completed in 84 milliseconds