/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/webkit/Source/WebCore/rendering/svg/ |
SVGTextLayoutEngineSpacing.cpp | 51 float kerning = 0; local 54 kerning = svgFont->verticalKerningForPairOfStringsAndGlyphs(m_lastGlyph.unicodeString, m_lastGlyph.name, currentGlyph.unicodeString, currentGlyph.name); 56 kerning = svgFont->horizontalKerningForPairOfStringsAndGlyphs(m_lastGlyph.unicodeString, m_lastGlyph.name, currentGlyph.unicodeString, currentGlyph.name); 61 kerning *= m_font.size() / m_font.fontMetrics().unitsPerEm(); 62 return kerning; 72 float kerning = 0; local 73 SVGLength kerningLength = style->kerning(); 75 kerning = kerningLength.valueAsPercentage() * m_font.pixelSize(); 77 kerning = kerningLength.value(lengthContext); 82 if (!kerning && !m_font.letterSpacing() && !m_font.wordSpacing() [all...] |
SVGTextLayoutEngineSpacing.h | 32 // Helper class used by SVGTextLayoutEngine to handle 'kerning' / 'letter-spacing' and 'word-spacing'.
|
/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.
|
KernTable.cpp | 67 * might invoke kerning when it is not supposed to. That too I'm 102 if (coverage & COVERAGE_HORIZONTAL) { // only handle horizontal kerning 211 fprintf(stdout, "binary found kerning pair %x:%x at %d, value: 0x%x (%g)\n",
|
/external/webkit/Source/WebKit2/UIProcess/ |
WebEditCommandProxy.cpp | 81 return WEB_UI_STRING_KEY("Turn Off Kerning", "Turn Off Kerning (Undo action name)", "Undo action name"); 83 return WEB_UI_STRING_KEY("Tighten Kerning", "Tighten Kerning (Undo action name)", "Undo action name"); 85 return WEB_UI_STRING_KEY("Loosen Kerning", "Loosen Kerning (Undo action name)", "Undo action name"); 87 return WEB_UI_STRING_KEY("Use Standard Kerning", "Use Standard Kerning (Undo action name)", "Undo action name");
|
/libcore/luni/src/test/java/libcore/java/awt/font/ |
TextAttributeTest.java | 25 assertEquals("java.awt.font.TextAttribute(kerning)", 26 TextAttribute.KERNING.toString());
|
/external/webkit/Source/WebCore/css/ |
SVGCSSPropertyNames.in | 46 kerning
|
/external/freetype/src/truetype/ |
ttdriver.c | 79 /* A driver method used to return the kerning vector between two */ 90 /* kerning :: The kerning vector. This is in font units for */ 109 FT_Vector* kerning ) 115 kerning->x = 0; 116 kerning->y = 0; 119 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
|
/external/webkit/Source/WebCore/rendering/style/ |
SVGRenderStyleDefs.cpp | 122 : kerning(SVGRenderStyle::initialKerning()) 128 , kerning(other.kerning) 134 return kerning == other.kerning;
|
/external/webkit/Source/WebCore/svg/ |
SVGFontElement.h | 37 float kerning; member in struct:WebCore::SVGKerningPair 46 : kerning(0.0f)
|
/external/skia/legacy/include/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
|
/external/webkit/Source/WebCore/platform/graphics/ |
TypesettingFeatures.h | 31 Kerning = 1 << 0,
|
/frameworks/base/libs/hwui/font/ |
CachedGlyphInfo.h | 49 // Auto-kerning
|
/external/freetype/src/cff/ |
cffdrivr.c | 76 /* A driver method used to return the kerning vector between two */ 87 /* kerning :: The kerning vector. This is in font units for */ 106 FT_Vector* kerning ) 112 kerning->x = 0; 113 kerning->y = 0; 116 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
|
/external/freetype/include/freetype/ |
ftpfr.h | 103 * Return the kerning pair corresponding to two glyphs in a PFR face. 115 * avector :: A kerning vector.
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
SimpleFontDataCoreText.cpp | 60 if (!(typesettingFeatures & Kerning)) { 69 // By omitting the kCTKernAttributeName attribute, we get Core Text's standard kerning.
|
/external/freetype/include/freetype/internal/ |
ftdriver.h | 99 FT_Vector* kerning ); 150 /* kerning for a given pair of glyphs. Can be */ 152 /* kerning. */
|
/libcore/luni/src/main/java/java/awt/font/ |
TextAttribute.java | 92 * The KERNING text attribute key. 96 public static final TextAttribute KERNING = new TextAttribute("kerning");
|