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

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
TypesettingFeatures.h 32 Kerning = 1 << 0,
FontDescription.cpp 166 m_typesettingFeatures &= ~(WebCore::Kerning | Ligatures);
170 m_typesettingFeatures |= WebCore::Kerning | Ligatures;
174 switch (kerning()) {
176 m_typesettingFeatures &= ~WebCore::Kerning;
179 m_typesettingFeatures |= WebCore::Kerning;
FontDescription.h 52 enum Kerning { AutoKerning, NormalKerning, NoneKerning };
106 Kerning kerning() const { return static_cast<Kerning>(m_kerning); } function in class:WebCore::FontDescription
141 void setKerning(Kerning kerning) { m_kerning = kerning; updateTypesettingFeatures(); }
196 unsigned m_kerning : 2; // Kerning
WidthIterator.h 87 bool shouldApplyFontTransforms() const { return m_run.length() > 1 && (m_typesettingFeatures & (Kerning | Ligatures)); }
WidthIterator.cpp 103 ASSERT(typesettingFeatures & (Kerning | Ligatures));
Font.cpp 114 // FIXME: Use the fast code path once it handles partial runs with kerning and ligatures. See http://webkit.org/b/100050
130 // FIXME: Use the fast code path once it handles partial runs with kerning and ligatures. See http://webkit.org/b/100050
163 bool hasKerningOrLigatures = fontDescription().typesettingFeatures() & (Kerning | Ligatures);
214 // FIXME: Use the fast code path once it handles partial runs with kerning and ligatures. See http://webkit.org/b/100050
226 // FIXME: Use the fast code path once it handles partial runs with kerning and ligatures. See http://webkit.org/b/100050
635 // FIXME: Using separate glyph buffers for the prefix and the suffix is incorrect when kerning or
772 it.advance(run.length(), (fontDescription().typesettingFeatures() & (Kerning | Ligatures)) ? &glyphBuffer : 0);
    [all...]
  /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 78 void setKerning(FontDescription::Kerning);
98 static FontDescription::Kerning initialKerning() { return FontDescription::AutoKerning; }
FontBuilder.cpp 484 void FontBuilder::setKerning(FontDescription::Kerning kerning)
488 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 586 // Non-zero only when kerning is enabled, in which case we measure
588 float wordTrailingSpaceWidth = (font.fontDescription().typesettingFeatures() & Kerning) ?
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp     [all...]
RenderBlockLineLayout.cpp 444 bool kerningIsEnabled = font.fontDescription().typesettingFeatures() & Kerning;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSPrimitiveValueMappings.h     [all...]

Completed in 530 milliseconds