HomeSort by relevance Sort by last modified time
    Searched full:kerning (Results 26 - 50 of 221) sorted by null

12 3 4 5 6 7 8 9

  /external/freetype/src/sfnt/
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/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/sfnt/
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/pdfium/third_party/freetype/src/sfnt/
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/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/
test_afm.c 29 printf( "There is no track kerning.\n" );
46 printf( "There are %d kerning pairs:\n",
49 printf( "There is no kerning pair.\n" );
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/docs/
TODO 8 * Add track kerning support to the PFR driver.
10 * Add kerning (AFM file) support to the CID driver.
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/
BMFontUtil.java 113 System.out.println("Kerning information could not be output because a TTF font file was not specified.");
115 Kerning kerning = new Kerning(); local
117 kerning.load(Gdx.files.internal(ttfFileRef).read(), font.getSize());
119 System.out.println("Unable to read kerning information from font: " + ttfFileRef);
133 for (IntIntMap.Entry entry : kerning.getKernings()) {
154 out.println("kerning first=" + pair.firstCodePoint + " second=" + pair.secondCodePoint + " amount=" + pair.offset);
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/pfr/
pfrobjs.h 74 FT_Vector* kerning );
pfrobjs.c 275 /* check whether we have loaded any kerning pairs */
467 /***** KERNING METHOD *****/
476 FT_Vector* kerning )
484 kerning->x = 0;
485 kerning->y = 0;
502 /* now search the list of kerning items */
590 kerning->x = item->base_adj + value;
  /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/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/truetype/
ttdriver.c 143 /* A driver method used to return the kerning vector between two */
154 /* kerning :: The kerning vector. This is in font units for */
173 FT_Vector* kerning )
179 kerning->x = 0;
180 kerning->y = 0;
183 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
  /external/skia/site/user/
tips.md 9 + [Does Skia shape text (kerning)?](#kerning)
158 <span id="kerning"></span>
160 Does Skia shape text (kerning)?
166 generate the glyphs and their positions, including kerning.
  /external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/
FreeTypeFontGenerator.java 436 // Generate kerning.
437 parameter.kerning &= face.hasKerning();
438 if (parameter.kerning) {
450 int kerning = face.getKerning(firstIndex, secondIndex, 0); local
451 if (kerning != 0) first.setKerning(secondChar, FreeType.toInt(kerning));
453 kerning = face.getKerning(secondIndex, firstIndex, 0);
454 if (kerning != 0) second.setKerning(firstChar, FreeType.toInt(kerning));
661 if (parameter.kerning) {
667 int kerning = face.getKerning(glyphIndex, otherIndex, 0); local
748 public boolean kerning = true; field in class:FreeTypeFontGenerator.FreeTypeFontParameter
    [all...]
  /external/freetype/include/
ftpfr.h 103 * Return the kerning pair corresponding to two glyphs in a PFR face.
115 * avector :: A kerning vector.
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/include/freetype/
ftpfr.h 103 * Return the kerning pair corresponding to two glyphs in a PFR face.
115 * avector :: A kerning vector.
  /external/pdfium/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.
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftpfr.h 103 * Return the kerning pair corresponding to two glyphs in a PFR face.
115 * avector :: A kerning vector.
  /external/freetype/src/cff/
cffdrivr.c 73 /* A driver method used to return the kerning vector between two */
84 /* kerning :: The kerning vector. This is in font units for */
103 FT_Vector* kerning )
109 kerning->x = 0;
110 kerning->y = 0;
113 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cff/
cffdrivr.c 73 /* A driver method used to return the kerning vector between two */
84 /* kerning :: The kerning vector. This is in font units for */
103 FT_Vector* kerning )
109 kerning->x = 0;
110 kerning->y = 0;
113 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/type1/
t1driver.c 627 /* A driver method used to return the kerning vector between two */
638 /* kerning :: The kerning vector. This is in font units for */
657 FT_Vector* kerning )
662 kerning->x = 0;
663 kerning->y = 0;
669 kerning );
  /external/pdfium/third_party/freetype/src/cff/
cffdrivr.c 73 /* A driver method used to return the kerning vector between two */
84 /* kerning :: The kerning vector. This is in font units for */
103 FT_Vector* kerning )
109 kerning->x = 0;
110 kerning->y = 0;
113 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
  /external/pdfium/third_party/freetype/src/type1/
t1driver.c 627 /* A driver method used to return the kerning vector between two */
638 /* kerning :: The kerning vector. This is in font units for */
657 FT_Vector* kerning )
662 kerning->x = 0;
663 kerning->y = 0;
669 kerning );
  /external/freetype/include/internal/
ftdriver.h 83 FT_Vector* kerning );
134 /* kerning for a given pair of glyphs. Can be */
136 /* kerning. */
  /external/icu/icu4c/source/layout/
KernTable.cpp 71 * might invoke kerning when it is not supposed to. That too I'm
108 if (coverage & COVERAGE_HORIZONTAL) { // only handle horizontal kerning
237 fprintf(stdout, "binary found kerning pair %x:%x at %d, value: 0x%x (%g)\n",
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/include/freetype/internal/
ftdriver.h 83 FT_Vector* kerning );
134 /* kerning for a given pair of glyphs. Can be */
136 /* kerning. */

Completed in 2799 milliseconds

12 3 4 5 6 7 8 9