/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/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGTextLayoutEngineSpacing.cpp | 65 float kerning = 0; local 68 kerning = svgFont->verticalKerningForPairOfStringsAndGlyphs(m_lastGlyph.unicodeString, m_lastGlyph.name, currentGlyph.unicodeString, currentGlyph.name); 70 kerning = svgFont->horizontalKerningForPairOfStringsAndGlyphs(m_lastGlyph.unicodeString, m_lastGlyph.name, currentGlyph.unicodeString, currentGlyph.name); 75 kerning *= m_font.size() / m_font.fontMetrics().unitsPerEm(); 76 return kerning; 84 float kerning = 0; local 85 SVGLength kerningLength = style->kerning(); 87 kerning = kerningLength.valueAsPercentage() * m_font.pixelSize(); 90 kerning = kerningLength.value(lengthContext); 96 if (!kerning && !m_font.letterSpacing() && !m_font.wordSpacing() [all...] |
SVGTextLayoutEngineSpacing.h | 31 // Helper class used by SVGTextLayoutEngine to handle 'kerning' / 'letter-spacing' and 'word-spacing'.
|
SVGTextLayoutEngine.cpp | 505 // Calculate SVG Fonts kerning, if needed. 506 float kerning = spacingLayout.calculateSVGKerning(m_isVerticalText, visualMetrics.glyph()); local 508 // Calculate CSS 'kerning', 'letter-spacing' and 'word-spacing' for next character, if needed. 519 m_textPathCurrentOffset += m_dy - kerning; 530 m_textPathCurrentOffset += m_dx - kerning; 571 y -= kerning; 573 x -= kerning; 583 || orientationAngle || kerning || applySpacingToNextCharacter || definesTextLength; 625 // Apply CSS 'kerning', 'letter-spacing' and 'word-spacing' to next character, if needed.
|
/external/chromium_org/third_party/freetype/src/sfnt/ |
ttkern.h | 5 /* Load the basic TrueType kerning table. This doesn't handle */ 6 /* kerning data within the GPOS table at the moment. */
|
ttkern.c | 5 /* Load the basic TrueType kerning table. This doesn't handle */ 6 /* kerning data within the GPOS table at the moment. */ 63 " kerning table is too small - ignored\n" )); 71 " could not extract kerning table\n" )); 110 /* only use horizontal kerning tables */
|
/external/freetype/src/sfnt/ |
ttkern.h | 5 /* Load the basic TrueType kerning table. This doesn't handle */ 6 /* kerning data within the GPOS table at the moment. */
|
ttkern.c | 5 /* Load the basic TrueType kerning table. This doesn't handle */ 6 /* kerning data within the GPOS table at the moment. */ 63 " kerning table is too small - ignored\n" )); 71 " could not extract kerning table\n" )); 110 /* only use horizontal kerning tables */
|
/external/jmonkeyengine/engine/src/core/com/jme3/font/ |
StringBlock.java | 53 private boolean kerning;
field in class:StringBlock 67 * @param kerning
70 boolean kerning) {
76 this.kerning = kerning;
85 this.kerning = true;
150 return kerning;
153 void setKerning(boolean kerning) {
154 this.kerning = kerning;
[all...] |
BitmapCharacter.java | 52 private IntMap<Integer> kerning = new IntMap<Integer>();
field in class:BitmapCharacter 65 result.kerning = kerning.clone();
145 kerning.put(second, amount);
149 Integer i = kerning.get(second);
167 int[] seconds = new int[kerning.size()];
171 for (Entry<Integer> entry : kerning){
196 kerning.put(seconds[i], amounts[i]);
|
Kerning.java | 40 * Represents kerning information for a character. 42 public class Kerning implements Savable {
|
/external/icu4c/layout/ |
KernTable.h | 27 * Windows type 0 kerning table support only for now.
|
/libcore/luni/src/test/java/libcore/java/awt/font/ |
TextAttributeTest.java | 25 assertEquals("java.awt.font.TextAttribute(kerning)", 26 TextAttribute.KERNING.toString());
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
SVGCSSPropertyNames.in | 48 kerning
|
/external/chromium_org/third_party/freetype/src/truetype/ |
ttdriver.c | 148 /* A driver method used to return the kerning vector between two */ 159 /* kerning :: The kerning vector. This is in font units for */ 178 FT_Vector* kerning ) 184 kerning->x = 0; 185 kerning->y = 0; 188 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
|
/external/freetype/src/truetype/ |
ttdriver.c | 148 /* A driver method used to return the kerning vector between two */ 159 /* kerning :: The kerning vector. This is in font units for */ 178 FT_Vector* kerning ) 184 kerning->x = 0; 185 kerning->y = 0; 188 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
SVGRenderStyleDefs.cpp | 136 : kerning(SVGRenderStyle::initialKerning()) 142 , kerning(other.kerning) 148 return kerning == other.kerning;
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGFontElement.h | 37 float kerning; member in struct:WebCore::SVGKerningPair 46 : kerning(0)
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
FontDescription.h | 73 enum Kerning { AutoKerning, NormalKerning, NoneKerning }; 122 Kerning kerning() const { return static_cast<Kerning>(m_kerning); } function in class:WebCore::FontDescription 160 void setKerning(Kerning kerning) { m_kerning = kerning; } 201 unsigned m_kerning : 2; // Kerning
|
TypesettingFeatures.h | 32 Kerning = 1 << 0,
|
/external/chromium_org/third_party/skia/src/core/ |
SkAutoKern.h | 18 /* this is a helper class to perform auto-kerning
|
/external/skia/src/core/ |
SkAutoKern.h | 18 /* this is a helper class to perform auto-kerning
|
/frameworks/base/libs/hwui/font/ |
CachedGlyphInfo.h | 49 // Auto-kerning
|
/external/chromium_org/third_party/freetype/include/freetype/ |
ftpfr.h | 103 * Return the kerning pair corresponding to two glyphs in a PFR face. 115 * avector :: A kerning vector.
|