HomeSort by relevance Sort by last modified time
    Searched refs:cff (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium_org/third_party/freetype/src/cff/
cffdrivr.c 240 " cannot get glyph name from CFF & CEF fonts\n"
267 CFF_Font cff; local
275 cff = (CFF_FontRec *)face->extra.data;
276 charset = &cff->charset;
282 for ( i = 0; i < cff->num_glyphs; i++ )
287 name = cff_index_get_string( cff, sid - 391 );
324 CFF_Font cff = (CFF_Font)face->extra.data; local
328 if ( cff && cff->font_info == NULL )
330 CFF_FontRecDict dict = &cff->top_font.font_dict
380 CFF_Font cff = (CFF_Font)face->extra.data; local
448 CFF_Font cff = (CFF_Font)face->extra.data; local
503 CFF_Font cff = (CFF_Font)face->extra.data; local
527 CFF_Font cff; local
    [all...]
cffcmap.c 5 /* CFF character mapping table (cmap) support (body). */
28 /***** CFF STANDARD (AND EXPERT) ENCODING CMAPS *****/
37 CFF_Font cff = (CFF_Font)face->extra.data; local
38 CFF_Encoding encoding = &cff->encoding;
117 /***** CFF SYNTHETIC UNICODE ENCODING CMAP *****/
126 CFF_Font cff = (CFF_Font)face->extra.data; local
127 CFF_Charset charset = &cff->charset;
131 return cff_index_get_sid_string( cff, sid );
140 CFF_Font cff = (CFF_Font)face->extra.data; local
141 CFF_Charset charset = &cff->charset
176 CFF_Font cff = (CFF_Font)face->extra.data; local
189 CFF_Font cff = (CFF_Font)face->extra.data; local
    [all...]
cffpic.c 5 /* The FreeType position independent code services for cff module. */
48 if ( pic_container->cff )
50 CffModulePIC* container = (CffModulePIC*)pic_container->cff;
58 pic_container->cff = NULL;
76 pic_container->cff = container;
cffobjs.c 102 /* CFF and Type 1 private dictionaries have slightly different */
512 if ( face->format_tag != TTAG_OTTO ) /* `OTTO'; OpenType/CFF font */
514 FT_TRACE2(( "[not a valid OpenType/CFF font]\n" ));
522 /* UNDOCUMENTED! A CFF in an SFNT can have only a single font. */
532 /* now, the font can be either an OpenType/CFF font, or an SVG CEF */
556 /* now load the CFF part of the file */
563 /* rewind to start of file; we are going to load a pure-CFF font */
569 /* now load and parse the CFF table in the file */
571 CFF_Font cff = NULL; local
578 if ( FT_NEW( cff ) )
1028 CFF_Font cff = (CFF_Font)face->extra.data; local
    [all...]
cffgload.c 384 CFF_Font cff = (CFF_Font)face->extra.data; local
394 decoder->cff = cff;
395 decoder->num_globals = cff->global_subrs_index.count;
396 decoder->globals = cff->global_subrs;
398 cff->top_font.font_dict.charstring_type,
413 CFF_Font cff = (CFF_Font)builder->face->extra.data; local
414 CFF_SubFont sub = &cff->top_font;
419 if ( cff->num_subfonts )
421 FT_Byte fd_index = cff_fd_select_get( &cff->fd_select, glyph_index )
666 CFF_Font cff = (CFF_Font)(face->extra.data); local
702 CFF_Font cff = (CFF_Font)(face->extra.data); local
748 CFF_Font cff = (CFF_Font)(face->extra.data); local
2594 CFF_Font cff = (CFF_Font)face->extra.data; local
    [all...]
cffpic.h 5 /* The FreeType position independent code services for cff module. */
60 #define GET_PIC(lib) ((CffModulePIC*)((lib)->pic_container.cff))
cffgload.h 123 CFF_Font cff; member in struct:CFF_Decoder_
152 FT_Byte** glyph_names; /* for pure CFF fonts only */
175 #if 0 /* unused until we support pure CFF fonts */
  /external/freetype/src/cff/
cffdrivr.c 241 " cannot get glyph name from CFF & CEF fonts\n"
268 CFF_Font cff; local
276 cff = (CFF_FontRec *)face->extra.data;
277 charset = &cff->charset;
283 for ( i = 0; i < cff->num_glyphs; i++ )
288 name = cff_index_get_string( cff, sid - 391 );
326 CFF_Font cff = (CFF_Font)face->extra.data; local
330 if ( cff && cff->font_info == NULL )
332 CFF_FontRecDict dict = &cff->top_font.font_dict
384 CFF_Font cff = (CFF_Font)face->extra.data; local
455 CFF_Font cff = (CFF_Font)face->extra.data; local
510 CFF_Font cff = (CFF_Font)face->extra.data; local
534 CFF_Font cff; local
    [all...]
cffcmap.c 5 /* CFF character mapping table (cmap) support (body). */
30 /***** CFF STANDARD (AND EXPERT) ENCODING CMAPS *****/
39 CFF_Font cff = (CFF_Font)face->extra.data; local
40 CFF_Encoding encoding = &cff->encoding;
119 /***** CFF SYNTHETIC UNICODE ENCODING CMAP *****/
128 CFF_Font cff = (CFF_Font)face->extra.data; local
129 CFF_Charset charset = &cff->charset;
133 return cff_index_get_sid_string( cff, sid );
142 CFF_Font cff = (CFF_Font)face->extra.data; local
143 CFF_Charset charset = &cff->charset
178 CFF_Font cff = (CFF_Font)face->extra.data; local
191 CFF_Font cff = (CFF_Font)face->extra.data; local
    [all...]
cffpic.c 5 /* The FreeType position independent code services for cff module. */
68 if ( pic_container->cff )
70 CffModulePIC* container = (CffModulePIC*)pic_container->cff;
82 pic_container->cff = NULL;
100 pic_container->cff = container;
cffobjs.c 106 /* CFF and Type 1 private dictionaries have slightly different */
512 FT_TRACE2(( "CFF driver\n" ));
522 if ( face->format_tag != TTAG_OTTO ) /* `OTTO'; OpenType/CFF font */
524 FT_TRACE2(( " not an OpenType/CFF font\n" ));
535 /* now, the font can be either an OpenType/CFF font, or an SVG CEF */
556 /* now load the CFF part of the file */
563 /* rewind to start of file; we are going to load a pure-CFF font */
569 /* now load and parse the CFF table in the file */
571 CFF_Font cff = NULL; local
578 if ( FT_NEW( cff ) )
1040 CFF_Font cff = (CFF_Font)face->extra.data; local
    [all...]
cffgload.c 390 CFF_Font cff = (CFF_Font)face->extra.data; local
400 decoder->cff = cff;
401 decoder->num_globals = cff->global_subrs_index.count;
402 decoder->globals = cff->global_subrs;
404 cff->top_font.font_dict.charstring_type,
419 CFF_Font cff = (CFF_Font)builder->face->extra.data; local
420 CFF_SubFont sub = &cff->top_font;
425 if ( cff->num_subfonts )
427 FT_Byte fd_index = cff_fd_select_get( &cff->fd_select, glyph_index )
687 CFF_Font cff = (CFF_Font)(face->extra.data); local
723 CFF_Font cff = (CFF_Font)(face->extra.data); local
771 CFF_Font cff = (CFF_Font)(face->extra.data); local
2617 CFF_Font cff = (CFF_Font)face->extra.data; local
    [all...]
cffgload.h 131 cff_lookup_glyph_by_stdcharcode( CFF_Font cff,
158 CFF_Font cff; member in struct:CFF_Decoder_
187 FT_Byte** glyph_names; /* for pure CFF fonts only */
212 #if 0 /* unused until we support pure CFF fonts */
cffpic.h 5 /* The FreeType position independent code services for cff module. */
69 ( (CffModulePIC*)( (lib)->pic_container.cff ) )
cf2ft.c 278 FT_ASSERT( decoder && decoder->cff );
283 font = (CF2_Font)decoder->cff->cf2_instance.data;
286 if ( decoder->cff->cf2_instance.data == NULL )
288 decoder->cff->cf2_instance.finalizer =
291 if ( FT_ALLOC( decoder->cff->cf2_instance.data,
295 font = (CF2_Font)decoder->cff->cf2_instance.data;
535 gid = cff_lookup_glyph_by_stdcharcode( decoder->cff, code );
  /external/chromium_org/third_party/freetype/include/freetype/internal/
ftpic.h 40 void* cff; member in struct:FT_PIC_Container_
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_maxp.h 27 struct CFF : SkOTTableMaximumProfile_CFF { } cff; member in union:SkOTTableMaximumProfile::Version
  /external/freetype/include/freetype/internal/
ftpic.h 41 void* cff; member in struct:FT_PIC_Container_
  /external/skia/src/sfnt/
SkOTTable_maxp.h 27 struct CFF : SkOTTableMaximumProfile_CFF { } cff; member in union:SkOTTableMaximumProfile::Version
  /external/chromium_org/third_party/ots/src/
name.cc 10 #include "cff.h"
142 if (file->cff && !file->cff->name.empty()) {
143 rec.text = file->cff->name;
148 if (file->cff && !file->cff->name.empty()) {
149 AssignToUtf16BeFromAscii(&rec.text, file->cff->name);
211 // The spec says that "In CFF OpenType fonts, these two name strings, when
213 // the CFF's Name INDEX." And actually, Mac OS X's font parser requires that.
214 if (file->cff && !file->cff->name.empty())
    [all...]
cff.cc 5 #include "cff.h"
13 // CFF - PostScript font program (Compact Font Format) table
14 // http://www.microsoft.com/typography/otspec/cff.htm
896 file->cff = new OpenTypeCFF;
897 file->cff->data = data;
898 file->cff->length = length;
899 file->cff->font_dict_length = 0;
900 file->cff->local_subrs = NULL;
938 if (!ParseNameData(&table, name_index, &(file->cff->name))) {
967 sid_max, DICT_DATA_TOPLEVEL, file->cff)) {
    [all...]
vorg.cc 68 if (!file->cff) return false; // this table is not for fonts with TT glyphs.
  /external/chromium_org/third_party/freetype/
Android.mk 34 src/cff/cff.c \
ft2.target.darwin-arm.mk 42 third_party/freetype/src/cff/cff.c \
  /external/freetype/
Android.mk 34 src/cff/cff.c \

Completed in 363 milliseconds

1 2