Home
last modified time | relevance | path

Searched refs:desiredTextLength (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/rendering/svg/
DSVGTextChunkBuilder.cpp128 float desiredTextLength = 0; in addTextChunk() local
130 desiredTextLength = textContentElement->specifiedTextLength().value(textContentElement); in addTextChunk()
144 SVGTextChunk chunk(chunkStyle, desiredTextLength); in addTextChunk()
173 float textLengthShift = (chunk.desiredTextLength() - chunkLength) / chunkCharacters; in processTextChunk()
183 float textLengthScale = chunk.desiredTextLength() / chunkLength; in processTextChunk()
DSVGTextChunk.h44 SVGTextChunk(unsigned chunkStyle, float desiredTextLength);
50 float desiredTextLength() const { return m_desiredTextLength; } in desiredTextLength() function
DSVGTextChunk.cpp30 SVGTextChunk::SVGTextChunk(unsigned chunkStyle, float desiredTextLength) in SVGTextChunk() argument
32 , m_desiredTextLength(desiredTextLength) in SVGTextChunk()
DSVGTextLayoutEngine.cpp212 float desiredTextLength = 0; in beginTextPathLayout() local
216 desiredTextLength = textContentElement->specifiedTextLength().value(textContentElement); in beginTextPathLayout()
219 if (!desiredTextLength) in beginTextPathLayout()
223 m_textPathSpacing = (desiredTextLength - totalLength) / totalCharacters; in beginTextPathLayout()
225 m_textPathScaling = desiredTextLength / totalLength; in beginTextPathLayout()