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/core/platform/graphics/
TypesettingFeatures.h 32 Kerning = 1 << 0,
FontDescription.h 74 enum Kerning { AutoKerning, NormalKerning, NoneKerning };
120 Kerning kerning() const { return static_cast<Kerning>(m_kerning); } function in class:WebCore::FontDescription
152 void setKerning(Kerning kerning) { m_kerning = kerning; }
187 unsigned m_kerning : 2; // Kerning
WidthIterator.h 89 bool shouldApplyFontTransforms() const { return m_run.length() > 1 && (m_typesettingFeatures & (Kerning | Ligatures)); }
Font.h 253 features &= ~(Kerning | Ligatures);
257 features |= Kerning | Ligatures;
261 switch (m_fontDescription.kerning()) {
263 features &= ~Kerning;
266 features |= Kerning;
WidthIterator.cpp 105 ASSERT(typesettingFeatures & (Kerning | Ligatures));
Font.cpp 187 // FIXME: Use the fast code path once it handles partial runs with kerning and ligatures. See http://webkit.org/b/100050
203 // FIXME: Use the fast code path once it handles partial runs with kerning and ligatures. See http://webkit.org/b/100050
225 bool hasKerningOrLigatures = typesettingFeatures() & (Kerning | Ligatures);
278 // FIXME: Use the fast code path once it handles partial runs with kerning and ligatures. See http://webkit.org/b/100050
290 // FIXME: Use the fast code path once it handles partial runs with kerning and ligatures. See http://webkit.org/b/100050
FontFastPath.cpp 400 // FIXME: Using separate glyph buffers for the prefix and the suffix is incorrect when kerning or
538 it.advance(run.length(), (typesettingFeatures() & (Kerning | Ligatures)) ? &glyphBuffer : 0);
  /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/freetype/internal/services/
svkern.h 5 /* The FreeType Kerning service (specification). */
28 #define FT_SERVICE_ID_KERNING "kerning"
37 FT_DEFINE_SERVICE( Kerning )
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
Kerning.java 40 * Represents kerning information for a character.
42 public class Kerning implements Savable {
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FontBuilder.h 78 void setKerning(FontDescription::Kerning);
FontBuilder.cpp 475 void FontBuilder::setKerning(FontDescription::Kerning kerning)
479 scope.fontDescription().setKerning(kerning);
StyleBuilderCustom.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
SimpleFontDataCoreText.cpp 47 if (!(typesettingFeatures & Kerning)) {
  /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     [all...]

Completed in 819 milliseconds