HomeSort by relevance Sort by last modified time
    Searched defs:sfnt (Results 1 - 14 of 14) 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/webkit/Source/WebCore/platform/graphics/freetype/
FontCustomPlatformDataFreeType.cpp 73 Vector<char> sfnt; local
74 if (!convertWOFFToSfnt(buffer, sfnt))
77 sfntBuffer = SharedBuffer::adoptVector(sfnt);
  /external/webkit/Source/WebCore/platform/graphics/mac/
FontCustomPlatformData.cpp 59 Vector<char> sfnt; local
60 if (!convertWOFFToSfnt(buffer, sfnt))
63 sfntBuffer = SharedBuffer::adoptVector(sfnt);
  /external/freetype/src/cff/
cffdrivr.c 109 SFNT_Service sfnt = (SFNT_Service)face->sfnt; local
115 if ( sfnt )
116 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,
603 FT_Module sfnt; local
    [all...]
cffobjs.c 275 SFNT_Service sfnt = (SFNT_Service)cffface->sfnt; local
279 if ( sfnt->set_sbit_strike( cffface, req, &strike_index ) )
486 SFNT_Service sfnt; local
494 sfnt = (SFNT_Service)FT_Get_Module_Interface(
495 library, "sfnt" );
496 if ( !sfnt )
498 FT_ERROR(( "cff_face_init: cannot access `sfnt' module\n" ));
515 error = sfnt->init_face( stream, face, face_index, num_params, params );
529 /* UNDOCUMENTED! A CFF in an SFNT can have only a single font. *
1033 SFNT_Service sfnt; local
    [all...]
cffgload.c 2635 SFNT_Service sfnt = (SFNT_Service)cff_face->sfnt; local
    [all...]
  /external/freetype/src/truetype/
ttdriver.c 112 SFNT_Service sfnt = (SFNT_Service)face->sfnt; local
118 if ( sfnt )
119 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
204 SFNT_Service sfnt = (SFNT_Service) ttface->sfnt; local
208 error = sfnt->load_strike_metrics( ttface, strike_index, metrics );
232 SFNT_Service sfnt = (SFNT_Service) ttface->sfnt; local
236 error = sfnt->set_sbit_strike( ttface, req, &strike_index )
408 SFNT_Service sfnt; local
    [all...]
ttobjs.c 179 /* XXX: This function should be in the `sfnt' module. */
210 /* XXX: This function should be in the `sfnt' module. */
404 /* sfnt tables (`cvt', `fpgm', and `prep'). */
492 SFNT_Service sfnt; local
500 sfnt = (SFNT_Service)FT_Get_Module_Interface( library, "sfnt" );
501 if ( !sfnt )
503 FT_ERROR(( "tt_face_init: cannot access `sfnt' module\n" ));
513 error = sfnt->init_face( stream, face, face_index, num_params, params );
537 error = sfnt->load_face( stream, face, face_index, num_params, params )
656 SFNT_Service sfnt; local
    [all...]
ttgload.c 76 ( (SFNT_Service)face->sfnt )->get_metrics( face, 0, idx, lsb, aw );
100 ( (SFNT_Service)face->sfnt )->get_metrics( face, 1, idx, tsb, ah );
1774 SFNT_Service sfnt; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
FontCustomPlatformData.cpp 172 Vector<char> sfnt; local
173 if (!convertWOFFToSfnt(buffer, sfnt))
176 sfntBuffer = SharedBuffer::adoptVector(sfnt);
  /external/freetype/src/sfnt/
sfobjs.c 5 /* SFNT object management (base). */
380 FT_TRACE2(( " not a font using the SFNT container format\n" ));
445 SFNT_Service sfnt; local
453 sfnt = (SFNT_Service)face->sfnt;
454 if ( !sfnt )
456 sfnt = (SFNT_Service)FT_Get_Module_Interface( library, "sfnt" );
457 if ( !sfnt )
459 FT_ERROR(( "sfnt_init_face: cannot access `sfnt' module\n" ))
553 SFNT_Service sfnt = (SFNT_Service)face->sfnt; local
1072 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/Source/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 369 milliseconds