kerning           352 Source/core/animation/css/CSSAnimatableValueFactory.cpp         return AnimatableSVGLength::create(style.kerning());
kerning           152 Source/core/animation/css/CSSPropertyEquality.cpp         return ptrsOrValuesEqual<PassRefPtr<SVGLength> >(a.kerning(), b.kerning());
kerning          2313 Source/core/css/CSSComputedStyleDeclaration.cpp             return cssValuePool().createValue(style->fontDescription().kerning());
kerning          3270 Source/core/css/CSSPrimitiveValueMappings.h template<> inline CSSPrimitiveValue::CSSPrimitiveValue(FontDescription::Kerning kerning)
kerning          3274 Source/core/css/CSSPrimitiveValueMappings.h     switch (kerning) {
kerning           168 Source/core/css/SVGCSSComputedStyleDeclaration.cpp             return SVGLength::toCSSPrimitiveValue(svgStyle->kerning());
kerning           489 Source/core/css/resolver/FontBuilder.cpp void FontBuilder::setKerning(FontDescription::Kerning kerning)
kerning           493 Source/core/css/resolver/FontBuilder.cpp     scope.fontDescription().setKerning(kerning);
kerning          1426 Source/core/rendering/style/RenderStyle.h     PassRefPtr<SVGLength> kerning() const { return svgStyle()->kerning(); }
kerning           225 Source/core/rendering/style/SVGRenderStyle.h         if (!(text->kerning == obj))
kerning           226 Source/core/rendering/style/SVGRenderStyle.h             text.access()->kerning = obj;
kerning           333 Source/core/rendering/style/SVGRenderStyle.h     PassRefPtr<SVGLength> kerning() const { return text->kerning; }
kerning           136 Source/core/rendering/style/SVGRenderStyleDefs.cpp     : kerning(SVGRenderStyle::initialKerning())
kerning           142 Source/core/rendering/style/SVGRenderStyleDefs.cpp     , kerning(other.kerning->clone())
kerning           148 Source/core/rendering/style/SVGRenderStyleDefs.cpp     return *kerning == *other.kerning;
kerning           196 Source/core/rendering/style/SVGRenderStyleDefs.h         RefPtr<SVGLength> kerning;
kerning           511 Source/core/rendering/svg/SVGTextLayoutEngine.cpp         float kerning = spacingLayout.calculateSVGKerning(m_isVerticalText, visualMetrics.glyph());
kerning           524 Source/core/rendering/svg/SVGTextLayoutEngine.cpp                 m_textPathCurrentOffset += m_dy - kerning;
kerning           535 Source/core/rendering/svg/SVGTextLayoutEngine.cpp                 m_textPathCurrentOffset += m_dx - kerning;
kerning           573 Source/core/rendering/svg/SVGTextLayoutEngine.cpp                 y -= kerning;
kerning           575 Source/core/rendering/svg/SVGTextLayoutEngine.cpp                 x -= kerning;
kerning           585 Source/core/rendering/svg/SVGTextLayoutEngine.cpp             || orientationAngle || kerning || applySpacingToNextCharacter || definesTextLength;
kerning            69 Source/core/rendering/svg/SVGTextLayoutEngineSpacing.cpp     float kerning = 0;
kerning            72 Source/core/rendering/svg/SVGTextLayoutEngineSpacing.cpp             kerning = svgFont->verticalKerningForPairOfGlyphs(m_lastGlyph, currentGlyph);
kerning            74 Source/core/rendering/svg/SVGTextLayoutEngineSpacing.cpp             kerning = svgFont->horizontalKerningForPairOfGlyphs(m_lastGlyph, currentGlyph);
kerning            76 Source/core/rendering/svg/SVGTextLayoutEngineSpacing.cpp         kerning *= m_font.fontDescription().computedSize() / m_font.fontMetrics().unitsPerEm();
kerning            80 Source/core/rendering/svg/SVGTextLayoutEngineSpacing.cpp     return kerning;
kerning            88 Source/core/rendering/svg/SVGTextLayoutEngineSpacing.cpp     float kerning = 0;
kerning            89 Source/core/rendering/svg/SVGTextLayoutEngineSpacing.cpp     RefPtr<SVGLength> kerningLength = style->kerning();
kerning            91 Source/core/rendering/svg/SVGTextLayoutEngineSpacing.cpp         kerning = kerningLength->valueAsPercentage() * m_font.fontDescription().computedPixelSize();
kerning            94 Source/core/rendering/svg/SVGTextLayoutEngineSpacing.cpp         kerning = kerningLength->value(lengthContext);
kerning           100 Source/core/rendering/svg/SVGTextLayoutEngineSpacing.cpp     if (!kerning && !m_font.fontDescription().letterSpacing() && !m_font.fontDescription().wordSpacing())
kerning           103 Source/core/rendering/svg/SVGTextLayoutEngineSpacing.cpp     float spacing = m_font.fontDescription().letterSpacing() + kerning;
kerning           146 Source/core/svg/SVGFontElement.cpp             kerningTable.add(makeKerningPairKey(glyph1, glyph2), kerningPair.kerning);
kerning            36 Source/core/svg/SVGFontElement.h     float kerning;
kerning            45 Source/core/svg/SVGFontElement.h         : kerning(0)
kerning            73 Source/core/svg/SVGHKernElement.cpp         kerningPair.kerning = fastGetAttribute(SVGNames::kAttr).string().toFloat();
kerning            74 Source/core/svg/SVGVKernElement.cpp         kerningPair.kerning = fastGetAttribute(SVGNames::kAttr).string().toFloat();
kerning           174 Source/platform/fonts/FontDescription.cpp     switch (kerning()) {
kerning           110 Source/platform/fonts/FontDescription.h     Kerning kerning() const { return static_cast<Kerning>(m_kerning); }
kerning           145 Source/platform/fonts/FontDescription.h     void setKerning(Kerning kerning) { m_kerning = kerning; updateTypesettingFeatures(); }
kerning           463 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp     switch (description.kerning()) {