OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:textLengthShift
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextChunkBuilder.h
52
void processTextLengthSpacingCorrection(bool isVerticalText, float
textLengthShift
, Vector<SVGTextFragment>&, unsigned& atCharacter);
SVGTextChunkBuilder.cpp
173
float
textLengthShift
= (chunk.desiredTextLength() - chunkLength) / chunkCharacters;
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;
Completed in 132 milliseconds