Kerning 3270 Source/core/css/CSSPrimitiveValueMappings.h template<> inline CSSPrimitiveValue::CSSPrimitiveValue(FontDescription::Kerning kerning) Kerning 3290 Source/core/css/CSSPrimitiveValueMappings.h template<> inline CSSPrimitiveValue::operator FontDescription::Kerning() const Kerning 489 Source/core/css/resolver/FontBuilder.cpp void FontBuilder::setKerning(FontDescription::Kerning kerning) Kerning 77 Source/core/css/resolver/FontBuilder.h void setKerning(FontDescription::Kerning); Kerning 97 Source/core/css/resolver/FontBuilder.h static FontDescription::Kerning initialKerning() { return FontDescription::AutoKerning; } Kerning 446 Source/core/rendering/RenderBlockLineLayout.cpp bool kerningIsEnabled = font.fontDescription().typesettingFeatures() & Kerning; Kerning 1042 Source/core/rendering/RenderText.cpp if (isSpace && (f.fontDescription().typesettingFeatures() & Kerning)) { Kerning 601 Source/core/rendering/line/BreakingContextInlineHeaders.h float wordTrailingSpaceWidth = (font.fontDescription().typesettingFeatures() & Kerning) ? Kerning 152 Source/platform/fonts/Font.cpp bool hasKerningOrLigatures = fontDescription().typesettingFeatures() & (Kerning | Ligatures); Kerning 753 Source/platform/fonts/Font.cpp it.advance(run.length(), (fontDescription().typesettingFeatures() & (Kerning | Ligatures)) ? &glyphBuffer : 0); Kerning 166 Source/platform/fonts/FontDescription.cpp m_typesettingFeatures &= ~(WebCore::Kerning | Ligatures); Kerning 170 Source/platform/fonts/FontDescription.cpp m_typesettingFeatures |= WebCore::Kerning | Ligatures; Kerning 176 Source/platform/fonts/FontDescription.cpp m_typesettingFeatures &= ~WebCore::Kerning; Kerning 179 Source/platform/fonts/FontDescription.cpp m_typesettingFeatures |= WebCore::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 103 Source/platform/fonts/WidthIterator.cpp ASSERT(typesettingFeatures & (Kerning | Ligatures)); Kerning 87 Source/platform/fonts/WidthIterator.h bool shouldApplyFontTransforms() const { return m_run.length() > 1 && (m_typesettingFeatures & (Kerning | Ligatures)); } Kerning 47 Source/platform/fonts/mac/SimpleFontDataCoreText.cpp if (!(typesettingFeatures & Kerning)) {