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

  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutAttributesBuilder.cpp 43 unsigned atCharacter = 0;
45 collectTextPositioningElements(textRoot, atCharacter, lastCharacter);
47 if (!atCharacter)
51 buildLayoutAttributesForAllCharacters(textRoot, atCharacter);
56 atCharacter = 0;
58 propagateLayoutAttributes(textRoot, allAttributes, atCharacter, lastCharacter);
104 static inline void processRenderSVGInlineText(RenderSVGInlineText* text, unsigned& atCharacter, UChar& lastCharacter)
107 atCharacter += text->textLength();
119 ++atCharacter;
123 void SVGTextLayoutAttributesBuilder::collectTextPositioningElements(RenderObject* start, unsigned& atCharacter, UChar& lastCharacter
    [all...]
SVGTextLayoutAttributesBuilder.h 62 void collectTextPositioningElements(RenderObject*, unsigned& atCharacter, UChar& lastCharacter);
64 void propagateLayoutAttributes(RenderObject*, Vector<SVGTextLayoutAttributes>& allAttributes, unsigned& atCharacter, UChar& lastCharacter) const;
SVGTextChunkBuilder.h 53 void processTextLengthSpacingCorrection(bool isVerticalText, float textLengthShift, Vector<SVGTextFragment>&, unsigned& atCharacter);
SVGTextChunkBuilder.cpp 174 unsigned atCharacter = 0;
179 processTextLengthSpacingCorrection(isVerticalText, textLengthShift, fragments, atCharacter);
222 void SVGTextChunkBuilder::processTextLengthSpacingCorrection(bool isVerticalText, float textLengthShift, Vector<SVGTextFragment>& fragments, unsigned& atCharacter)
229 fragment.y += textLengthShift * atCharacter;
231 fragment.x += textLengthShift * atCharacter;
233 atCharacter += fragment.length;

Completed in 147 milliseconds