HomeSort by relevance Sort by last modified time
    Searched defs:sfnt (Results 1 - 11 of 11) sorted by null

  /external/freetype/include/freetype/internal/
ftpic.h 44 void* sfnt; member in struct:FT_PIC_Container_
tttypes.h 5 /* Basic SFNT/TrueType type definitions and interface (specification */
86 /* SFNT file format header. */
1298 void* sfnt; member in struct:TT_FaceRec_
    [all...]
  /external/freetype/src/truetype/
ttobjs.c 211 SFNT_Service sfnt; local
216 sfnt = (SFNT_Service)FT_Get_Module_Interface( library, "sfnt" );
217 if ( !sfnt )
225 error = sfnt->init_face( stream, face, face_index, num_params, params );
249 error = sfnt->load_face( stream, face, face_index, num_params, params );
341 SFNT_Service sfnt; local
349 sfnt = (SFNT_Service)face->sfnt;
355 if ( sfnt )
    [all...]
ttdriver.c 113 SFNT_Service sfnt = (SFNT_Service)face->sfnt; local
119 if ( sfnt )
120 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
207 SFNT_Service sfnt = (SFNT_Service) ttface->sfnt; local
211 error = sfnt->load_strike_metrics( ttface, strike_index, metrics );
235 SFNT_Service sfnt = (SFNT_Service) ttface->sfnt; local
239 error = sfnt->set_sbit_strike( ttface, req, &strike_index )
407 SFNT_Service sfnt; local
    [all...]
ttgload.c 80 ( (SFNT_Service)face->sfnt )->get_metrics( face, 0, idx, lsb, aw );
113 ( (SFNT_Service)face->sfnt )->get_metrics( face, 1, idx, tsb, ah );
1810 SFNT_Service sfnt; local
    [all...]
  /external/freetype/src/cff/
cffdrivr.c 110 SFNT_Service sfnt = (SFNT_Service)face->sfnt; local
116 if ( sfnt )
117 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
397 * service defined in SFNT module.
399 * Otherwise call the service function in the sfnt module.
418 FT_Module sfnt = FT_Get_Module( library, "sfnt" ); local
420 (FT_Service_TTCMaps)ft_module_get_service( sfnt,
602 FT_Module sfnt; local
    [all...]
cffobjs.c 276 SFNT_Service sfnt = (SFNT_Service)cffface->sfnt; local
280 if ( sfnt->set_sbit_strike( cffface, req, &strike_index ) )
441 SFNT_Service sfnt; local
449 sfnt = (SFNT_Service)FT_Get_Module_Interface(
450 library, "sfnt" );
451 if ( !sfnt )
464 error = sfnt->init_face( stream, face, face_index, num_params, params );
477 /* UNDOCUMENTED! A CFF in an SFNT can have only a single font. */
495 error = sfnt->load_face( stream, face, 0, num_params, params )
967 SFNT_Service sfnt; local
    [all...]
cffgload.c 2635 SFNT_Service sfnt = (SFNT_Service)cff_face->sfnt; local
    [all...]
  /external/freetype/src/sfnt/
sfobjs.c 5 /* SFNT object management (base). */
431 SFNT_Service sfnt; local
439 sfnt = (SFNT_Service)face->sfnt;
440 if ( !sfnt )
442 sfnt = (SFNT_Service)FT_Get_Module_Interface( library, "sfnt" );
443 if ( !sfnt )
446 face->sfnt = sfnt;
534 SFNT_Service sfnt = (SFNT_Service)face->sfnt; local
1058 SFNT_Service sfnt; local
    [all...]
ttload.c 163 /* no table is defined in directory, it is not sfnt-wrapped */
170 check_table_dir( SFNT_Header sfnt,
176 FT_ULong offset = sfnt->offset + 12;
195 for ( nn = 0; nn < sfnt->num_tables; nn++ )
205 nn, nn == 1 ? "" : "s", sfnt->num_tables ));
206 sfnt->num_tables = nn;
266 sfnt->num_tables = valid_entries;
268 if ( sfnt->num_tables == 0 )
303 /* Loads the header of a SFNT font file. */
311 /* sfnt :: The SFNT header. *
323 SFNT_HeaderRec sfnt; local
    [all...]
  /external/webkit/WebCore/platform/graphics/opentype/
OpenTypeUtilities.cpp 212 const sfntHeader* sfnt = reinterpret_cast<const sfntHeader*>(data); local
214 if (dataLength < offsetof(sfntHeader, tables) + sfnt->numTables * sizeof(TableDirectoryEntry))
230 for (unsigned i = 0; i < sfnt->numTables; i++) {
231 unsigned tableOffset = sfnt->tables[i].offset;
232 unsigned tableLength = sfnt->tables[i].length;
237 unsigned tableTag = sfnt->tables[i].tag;
349 const sfntHeader* sfnt = reinterpret_cast<const sfntHeader*>(fontData->data()); local
352 for (t = 0; t < sfnt->numTables; ++t) {
353 if (sfnt->tables[t].tag == 'name')
356 if (t == sfnt->numTables
    [all...]

Completed in 367 milliseconds