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

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
TypesettingFeatures.h 32 Kerning = 1 << 0,
FontDescription.cpp 189 m_typesettingFeatures &= ~(blink::Kerning | Ligatures);
193 m_typesettingFeatures |= blink::Kerning | Ligatures;
197 switch (kerning()) {
199 m_typesettingFeatures &= ~blink::Kerning;
202 m_typesettingFeatures |= blink::Kerning;
FontDescription.h 53 enum Kerning { AutoKerning, NormalKerning, NoneKerning };
142 Kerning kerning() const { return static_cast<Kerning>(m_kerning); } function in class:blink::FontDescription
178 void setKerning(Kerning kerning) { m_kerning = kerning; updateTypesettingFeatures(); }
229 unsigned m_kerning : 2; // Kerning
  /external/pdfium/core/include/thirdparties/freetype/freetype/internal/services/
svkern.h 5 /* The FreeType Kerning service (specification). */
28 #define FT_SERVICE_ID_KERNING "kerning"
37 FT_DEFINE_SERVICE( Kerning )
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/services/
svkern.h 5 /* The FreeType Kerning service (specification). */
28 #define FT_SERVICE_ID_KERNING "kerning"
37 FT_DEFINE_SERVICE( Kerning )
  /external/chromium_org/third_party/freetype/include/freetype/internal/services/
svkern.h 5 /* The FreeType Kerning service (specification). */
28 #define FT_SERVICE_ID_KERNING "kerning"
37 FT_DEFINE_SERVICE( Kerning )
  /external/freetype/include/internal/services/
svkern.h 5 /* The FreeType Kerning service (specification). */
28 #define FT_SERVICE_ID_KERNING "kerning"
37 FT_DEFINE_SERVICE( Kerning )
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FontBuilder.h 69 void setKerning(FontDescription::Kerning);
89 static FontDescription::Kerning initialKerning() { return FontDescription::AutoKerning; }
FontBuilder.cpp 294 void FontBuilder::setKerning(FontDescription::Kerning kerning)
298 scope.fontDescription().setKerning(kerning);
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
SimpleFontDataCoreText.cpp 56 if (!(typesettingFeatures & Kerning)) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
BreakingContextInlineHeaders.h 594 // Non-zero only when kerning is enabled, in which case we measure
596 float wordTrailingSpaceWidth = (font.fontDescription().typesettingFeatures() & Kerning) ?
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSPrimitiveValueMappings.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp     [all...]
RenderBlockLineLayout.cpp 394 bool kerningIsEnabled = font.fontDescription().typesettingFeatures() & Kerning;
    [all...]

Completed in 275 milliseconds