Home
last modified time | relevance | path

Searched refs:ttface (Results 1 – 21 of 21) sorted by relevance

/external/pdfium/third_party/freetype/src/base/
Dftgasp.c33 TT_Face ttface = (TT_Face)face; in FT_Get_Gasp() local
36 if ( ttface->gasp.numRanges > 0 ) in FT_Get_Gasp()
38 TT_GaspRange range = ttface->gasp.gaspRanges; in FT_Get_Gasp()
39 TT_GaspRange range_end = range + ttface->gasp.numRanges; in FT_Get_Gasp()
52 if ( ttface->gasp.version == 0 ) in FT_Get_Gasp()
Dftsnames.c52 TT_Face ttface = (TT_Face)face; in FT_Get_Sfnt_Name() local
55 if ( idx < (FT_UInt)ttface->num_names ) in FT_Get_Sfnt_Name()
57 TT_NameEntryRec* entry = ttface->name_table.names + idx; in FT_Get_Sfnt_Name()
Dftobjs.c603 TT_Face ttface = (TT_Face)face; in FT_Load_Glyph() local
681 ttface->num_locations && in FT_Load_Glyph()
682 ttface->max_profile.maxSizeOfInstructions == 0 && in FT_Load_Glyph()
683 ttface->font_program_size == 0 && in FT_Load_Glyph()
684 ttface->cvt_program_size == 0 ) ) in FT_Load_Glyph()
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/
Dftgasp.c33 TT_Face ttface = (TT_Face)face; in FT_Get_Gasp() local
36 if ( ttface->gasp.numRanges > 0 ) in FT_Get_Gasp()
38 TT_GaspRange range = ttface->gasp.gaspRanges; in FT_Get_Gasp()
39 TT_GaspRange range_end = range + ttface->gasp.numRanges; in FT_Get_Gasp()
52 if ( ttface->gasp.version == 0 ) in FT_Get_Gasp()
Dftsnames.c52 TT_Face ttface = (TT_Face)face; in FT_Get_Sfnt_Name() local
55 if ( idx < (FT_UInt)ttface->num_names ) in FT_Get_Sfnt_Name()
57 TT_NameEntryRec* entry = ttface->name_table.names + idx; in FT_Get_Sfnt_Name()
Dftobjs.c614 TT_Face ttface = (TT_Face)face; in FT_Load_Glyph() local
693 ttface->num_locations && in FT_Load_Glyph()
694 ttface->max_profile.maxSizeOfInstructions == 0 && in FT_Load_Glyph()
695 ttface->font_program_size == 0 && in FT_Load_Glyph()
696 ttface->cvt_program_size == 0 ) ) in FT_Load_Glyph()
/external/freetype/src/base/
Dftgasp.c33 TT_Face ttface = (TT_Face)face; in FT_Get_Gasp() local
36 if ( ttface->gasp.numRanges > 0 ) in FT_Get_Gasp()
38 TT_GaspRange range = ttface->gasp.gaspRanges; in FT_Get_Gasp()
39 TT_GaspRange range_end = range + ttface->gasp.numRanges; in FT_Get_Gasp()
52 if ( ttface->gasp.version == 0 ) in FT_Get_Gasp()
Dftsnames.c52 TT_Face ttface = (TT_Face)face; in FT_Get_Sfnt_Name() local
55 if ( idx < (FT_UInt)ttface->num_names ) in FT_Get_Sfnt_Name()
57 TT_NameEntryRec* entry = ttface->name_table.names + idx; in FT_Get_Sfnt_Name()
Dftobjs.c603 TT_Face ttface = (TT_Face)face; in FT_Load_Glyph() local
681 ttface->num_locations && in FT_Load_Glyph()
682 ttface->max_profile.maxSizeOfInstructions == 0 && in FT_Load_Glyph()
683 ttface->font_program_size == 0 && in FT_Load_Glyph()
684 ttface->cvt_program_size == 0 ) ) in FT_Load_Glyph()
/external/pdfium/third_party/freetype/src/truetype/
Dttobjs.c436 tt_check_single_notdef( FT_Face ttface ) in tt_check_single_notdef() argument
440 TT_Face face = (TT_Face)ttface; in tt_check_single_notdef()
471 error = FT_Get_Glyph_Name( ttface, glyph_index, buf, 8 ); in tt_check_single_notdef()
510 FT_Face ttface, /* TT_Face */ in tt_face_init() argument
518 TT_Face face = (TT_Face)ttface; in tt_face_init()
523 library = ttface->driver->root.library; in tt_face_init()
558 ttface->face_flags |= FT_FACE_FLAG_HINTER; in tt_face_init()
570 if ( tt_check_trickyness( ttface ) ) in tt_face_init()
571 ttface->face_flags |= FT_FACE_FLAG_TRICKY; in tt_face_init()
577 if ( FT_IS_SCALABLE( ttface ) ) in tt_face_init()
[all …]
Dttdriver.c170 tt_get_kerning( FT_Face ttface, /* TT_Face */ in tt_get_kerning() argument
175 TT_Face face = (TT_Face)ttface; in tt_get_kerning()
190 tt_get_advances( FT_Face ttface, in tt_get_advances() argument
197 TT_Face face = (TT_Face) ttface; in tt_get_advances()
250 TT_Face ttface = (TT_Face)size->face; in tt_size_select() local
266 SFNT_Service sfnt = (SFNT_Service) ttface->sfnt; in tt_size_select()
270 error = sfnt->load_strike_metrics( ttface, strike_index, metrics ); in tt_size_select()
293 TT_Face ttface = (TT_Face)size->face; in tt_size_request() local
294 SFNT_Service sfnt = (SFNT_Service) ttface->sfnt; in tt_size_request()
298 error = sfnt->set_sbit_strike( ttface, req, &strike_index ); in tt_size_request()
Dttobjs.h358 FT_Face ttface, /* TT_Face */
364 tt_face_done( FT_Face ttface ); /* TT_Face */
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/truetype/
Dttobjs.c436 tt_check_single_notdef( FT_Face ttface ) in tt_check_single_notdef() argument
440 TT_Face face = (TT_Face)ttface; in tt_check_single_notdef()
471 error = FT_Get_Glyph_Name( ttface, glyph_index, buf, 8 ); in tt_check_single_notdef()
510 FT_Face ttface, /* TT_Face */ in tt_face_init() argument
518 TT_Face face = (TT_Face)ttface; in tt_face_init()
523 library = ttface->driver->root.library; in tt_face_init()
558 ttface->face_flags |= FT_FACE_FLAG_HINTER; in tt_face_init()
570 if ( tt_check_trickyness( ttface ) ) in tt_face_init()
571 ttface->face_flags |= FT_FACE_FLAG_TRICKY; in tt_face_init()
577 if ( FT_IS_SCALABLE( ttface ) ) in tt_face_init()
[all …]
Dttdriver.c170 tt_get_kerning( FT_Face ttface, /* TT_Face */ in tt_get_kerning() argument
175 TT_Face face = (TT_Face)ttface; in tt_get_kerning()
190 tt_get_advances( FT_Face ttface, in tt_get_advances() argument
197 TT_Face face = (TT_Face) ttface; in tt_get_advances()
250 TT_Face ttface = (TT_Face)size->face; in tt_size_select() local
266 SFNT_Service sfnt = (SFNT_Service) ttface->sfnt; in tt_size_select()
270 error = sfnt->load_strike_metrics( ttface, strike_index, metrics ); in tt_size_select()
293 TT_Face ttface = (TT_Face)size->face; in tt_size_request() local
294 SFNT_Service sfnt = (SFNT_Service) ttface->sfnt; in tt_size_request()
298 error = sfnt->set_sbit_strike( ttface, req, &strike_index ); in tt_size_request()
Dttobjs.h358 FT_Face ttface, /* TT_Face */
364 tt_face_done( FT_Face ttface ); /* TT_Face */
/external/freetype/src/truetype/
Dttobjs.c436 tt_check_single_notdef( FT_Face ttface ) in tt_check_single_notdef() argument
440 TT_Face face = (TT_Face)ttface; in tt_check_single_notdef()
471 error = FT_Get_Glyph_Name( ttface, glyph_index, buf, 8 ); in tt_check_single_notdef()
507 FT_Face ttface, /* TT_Face */ in tt_face_init() argument
515 TT_Face face = (TT_Face)ttface; in tt_face_init()
520 library = ttface->driver->root.library; in tt_face_init()
555 ttface->face_flags |= FT_FACE_FLAG_HINTER; in tt_face_init()
567 if ( tt_check_trickyness( ttface ) ) in tt_face_init()
568 ttface->face_flags |= FT_FACE_FLAG_TRICKY; in tt_face_init()
574 if ( FT_IS_SCALABLE( ttface ) ) in tt_face_init()
[all …]
Dttdriver.c170 tt_get_kerning( FT_Face ttface, /* TT_Face */ in tt_get_kerning() argument
175 TT_Face face = (TT_Face)ttface; in tt_get_kerning()
190 tt_get_advances( FT_Face ttface, in tt_get_advances() argument
197 TT_Face face = (TT_Face) ttface; in tt_get_advances()
250 TT_Face ttface = (TT_Face)size->face; in tt_size_select() local
266 SFNT_Service sfnt = (SFNT_Service) ttface->sfnt; in tt_size_select()
270 error = sfnt->load_strike_metrics( ttface, strike_index, metrics ); in tt_size_select()
293 TT_Face ttface = (TT_Face)size->face; in tt_size_request() local
294 SFNT_Service sfnt = (SFNT_Service) ttface->sfnt; in tt_size_request()
298 error = sfnt->set_sbit_strike( ttface, req, &strike_index ); in tt_size_request()
Dttobjs.h369 FT_Face ttface, /* TT_Face */
375 tt_face_done( FT_Face ttface ); /* TT_Face */
/external/pdfium/third_party/freetype/src/cff/
Dcffdrivr.c100 cff_get_kerning( FT_Face ttface, /* TT_Face */ in cff_get_kerning() argument
105 TT_Face face = (TT_Face)ttface; in cff_get_kerning()
204 TT_Face ttface = (TT_Face)face; in cff_get_advances() local
214 if ( !ttface->vertical_info ) in cff_get_advances()
222 ( (SFNT_Service)ttface->sfnt )->get_metrics( ttface, in cff_get_advances()
236 if ( !ttface->horizontal.number_Of_HMetrics ) in cff_get_advances()
244 ( (SFNT_Service)ttface->sfnt )->get_metrics( ttface, in cff_get_advances()
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cff/
Dcffdrivr.c100 cff_get_kerning( FT_Face ttface, /* TT_Face */ in cff_get_kerning() argument
105 TT_Face face = (TT_Face)ttface; in cff_get_kerning()
204 TT_Face ttface = (TT_Face)face; in cff_get_advances() local
214 if ( !ttface->vertical_info ) in cff_get_advances()
222 ( (SFNT_Service)ttface->sfnt )->get_metrics( ttface, in cff_get_advances()
236 if ( !ttface->horizontal.number_Of_HMetrics ) in cff_get_advances()
244 ( (SFNT_Service)ttface->sfnt )->get_metrics( ttface, in cff_get_advances()
/external/freetype/src/cff/
Dcffdrivr.c100 cff_get_kerning( FT_Face ttface, /* TT_Face */ in cff_get_kerning() argument
105 TT_Face face = (TT_Face)ttface; in cff_get_kerning()
204 TT_Face ttface = (TT_Face)face; in cff_get_advances() local
214 if ( !ttface->vertical_info ) in cff_get_advances()
222 ( (SFNT_Service)ttface->sfnt )->get_metrics( ttface, in cff_get_advances()
236 if ( !ttface->horizontal.number_Of_HMetrics ) in cff_get_advances()
244 ( (SFNT_Service)ttface->sfnt )->get_metrics( ttface, in cff_get_advances()