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

  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutEngineSpacing.h 39 float calculateCSSKerningAndSpacing(const SVGRenderStyle*, SVGElement* lengthContext, const UChar* currentCharacter);
SVGTextLayoutEngineBaseline.h 41 float calculateBaselineShift(const SVGRenderStyle*, SVGElement* lengthContext) const;
SVGTextLayoutEngineSpacing.cpp 70 float SVGTextLayoutEngineSpacing::calculateCSSKerningAndSpacing(const SVGRenderStyle* style, SVGElement* lengthContext, const UChar* currentCharacter)
77 kerning = kerningLength.value(lengthContext);
SVGTextLayoutEngineBaseline.cpp 38 float SVGTextLayoutEngineBaseline::calculateBaselineShift(const SVGRenderStyle* style, SVGElement* lengthContext) const
45 return baselineShiftValueLength.value(lengthContext);
SVGRenderSupport.cpp 329 SVGElement* lengthContext = static_cast<SVGElement*>(object->node());
330 context->setStrokeThickness(svgStyle->strokeWidth().value(lengthContext));
343 dashArray.append((*it).value(lengthContext));
345 context->setLineDash(dashArray, svgStyle->strokeDashOffset().value(lengthContext));
SVGTextLayoutAttributesBuilder.cpp 61 static inline void extractFloatValuesFromSVGLengthList(SVGElement* lengthContext, const SVGLengthList& list, Vector<float>& floatValues, unsigned textContentLength)
63 ASSERT(lengthContext);
72 floatValues.append(length.value(lengthContext));
SVGTextLayoutEngine.cpp 438 SVGElement* lengthContext = static_cast<SVGElement*>(text->parent()->node());
460 float baselineShift = baselineLayout.calculateBaselineShift(svgStyle, lengthContext);
523 float spacing = spacingLayout.calculateCSSKerningAndSpacing(svgStyle, lengthContext, currentCharacter);

Completed in 378 milliseconds