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

1 2

  /external/fonttools/Lib/fontTools/ttLib/tables/
C_F_F_.py 11 self.cff = cffLib.CFFFontSet()
15 self.cff.decompile(StringIO(data), otFont)
16 assert len(self.cff) == 1, "can't deal with multi-font CFF tables."
20 self.cff.compile(f, otFont)
24 if hasattr(self.cff[self.cff.fontNames[0]], "ROS"):
34 return self.cff[self.cff.fontNames[0]].getGlyphOrder()
39 #self.cff[self.cff.fontNames[0]].setGlyphOrder(glyphOrder
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/aarch64/
bitfield-no-aliases.d 9 0: 13001cff sbfm wzr, w7, #0, #7
10 4: 93401cff sbfm xzr, x7, #0, #7
11 8: 13003cff sbfm wzr, w7, #0, #15
12 c: 93403cff sbfm xzr, x7, #0, #15
13 10: 93407cff sbfm xzr, x7, #0, #31
14 14: 53001cff ubfm wzr, w7, #0, #7
15 18: 53001cff ubfm wzr, w7, #0, #7
16 1c: 53003cff ubfm wzr, w7, #0, #15
17 20: 53003cff ubfm wzr, w7, #0, #15
20 2c: 13007cff sbfm wzr, w7, #0, #3
    [all...]
  /external/freetype/src/cff/
module.mk 2 # FreeType 2 CFF module definition
20 $(ECHO_DRIVER)cff $(ECHO_DRIVER_DESC)OpenType fonts with extension *.otf$(ECHO_DRIVER_DONE)
cffcmap.c 5 /* CFF character mapping table (cmap) support (body). */
30 /***** CFF STANDARD (AND EXPERT) ENCODING CMAPS *****/
40 CFF_Font cff = (CFF_Font)face->extra.data; local
41 CFF_Encoding encoding = &cff->encoding;
128 /***** CFF SYNTHETIC UNICODE ENCODING CMAP *****/
137 CFF_Font cff = (CFF_Font)face->extra.data; local
138 CFF_Charset charset = &cff->charset;
142 return cff_index_get_sid_string( cff, sid );
152 CFF_Font cff = (CFF_Font)face->extra.data; local
153 CFF_Charset charset = &cff->charset
190 CFF_Font cff = (CFF_Font)face->extra.data; local
203 CFF_Font cff = (CFF_Font)face->extra.data; local
    [all...]
cffdrivr.c 211 /* the values in the `CFF' table */
227 /* otherwise we extract the info from the CFF glyphstrings */
353 " cannot get glyph name from CFF & CEF fonts\n"
380 CFF_Font cff; local
388 cff = (CFF_FontRec *)face->extra.data;
389 charset = &cff->charset;
393 if ( cff->version_major == 2 )
420 for ( i = 0; i < cff->num_glyphs; i++ )
425 name = cff_index_get_string( cff, sid - 391 );
464 CFF_Font cff = (CFF_Font)face->extra.data local
508 CFF_Font cff = (CFF_Font)face->extra.data; local
603 CFF_Font cff = (CFF_Font)face->extra.data; local
695 CFF_Font cff = (CFF_Font)face->extra.data; local
750 CFF_Font cff = (CFF_Font)face->extra.data; local
774 CFF_Font cff; local
    [all...]
rules.mk 2 # FreeType 2 OpenType/CFF driver configuration rules
18 CFF_DIR := $(SRC_DIR)/cff
27 # CFF driver sources (i.e., C files)
38 # CFF driver headers
45 # CFF driver object(s)
51 CFF_DRV_OBJ_S := $(OBJ_DIR)/cff.$O
53 # CFF driver source file for single build
55 CFF_DRV_SRC_S := $(CFF_DIR)/cff.c
58 # CFF driver - single object
64 # CFF driver - multiple object
    [all...]
cffobjs.c 114 /* CFF and Type 1 private dictionaries have slightly different */
535 FT_TRACE2(( "CFF driver\n" ));
546 if ( face->format_tag != TTAG_OTTO ) /* `OTTO'; OpenType/CFF font */
548 FT_TRACE2(( " not an OpenType/CFF font\n" ));
559 /* now, the font can be either an OpenType/CFF font, or an SVG CEF */
580 /* now load the CFF part of the file; */
597 /* rewind to start of file; we are going to load a pure-CFF font */
603 /* now load and parse the CFF table in the file */
605 CFF_Font cff = NULL; local
612 if ( FT_NEW( cff ) )
1140 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;
cffgload.c 71 CFF_Font cff = (CFF_Font)(face->extra.data); local
74 return cff_index_access_element( &cff->charstrings_index, glyph_index,
107 CFF_Font cff = (CFF_Font)(face->extra.data); local
110 cff_index_forget_element( &cff->charstrings_index, pointer );
133 #if 0 /* unused until we support pure CFF fonts */
143 CFF_Font cff = (CFF_Font)face->other;
205 CFF_Font cff = (CFF_Font)face->extra.data; local
219 if ( cff->top_font.font_dict.cid_registry != 0xFFFFU &&
220 cff->charset.cids )
225 glyph_index = cff_charset_cid_to_gindex( &cff->charset
    [all...]
cffpic.h 5 /* The FreeType position independent code services for cff module. */
76 ( (CffModulePIC*)( (lib)->pic_container.cff ) )
  /external/freetype/include/freetype/internal/
ftpic.h 41 void* cff; member in struct:FT_PIC_Container_
psaux.h 613 CFF_Font cff; member in struct:PS_Decoder_
630 FT_Byte** glyph_names; /* for pure CFF fonts only */
1105 CFF_Font cff; member in struct:CFF_Decoder_
    [all...]
  /external/skia/src/sfnt/
SkOTTable_maxp.h 27 struct CFF : SkOTTableMaximumProfile_CFF { } cff; member in union:SkOTTableMaximumProfile::Version
  /external/skqp/src/sfnt/
SkOTTable_maxp.h 27 struct CFF : SkOTTableMaximumProfile_CFF { } cff; member in union:SkOTTableMaximumProfile::Version
  /external/freetype/src/psaux/
cffdecode.h 5 /* PostScript CFF (Type 2) decoding routines (specification). */
46 cff_lookup_glyph_by_stdcharcode( CFF_Font cff,
cffdecode.c 5 /* PostScript CFF (Type 2) decoding routines (body). */
252 CFF_Font cff = (CFF_Font)(face->extra.data); local
255 bchar_index = cff_lookup_glyph_by_stdcharcode( cff, bchar );
256 achar_index = cff_lookup_glyph_by_stdcharcode( cff, achar );
419 cff_lookup_glyph_by_stdcharcode( CFF_Font cff,
429 if ( !cff->charset.sids )
450 cffload = (FT_Service_CFFLoad)cff->cffload;
455 for ( n = 0; n < cff->num_glyphs; n++ )
457 if ( cff->charset.sids[n] == glyph_sid )
503 decoder->cff->top_font.font_dict.charstring_type
2286 CFF_Font cff = (CFF_Font)face->extra.data; local
2318 CFF_Font cff = (CFF_Font)builder->face->extra.data; local
    [all...]
psft.c 320 ( is_t1 || decoder->cff ) );
349 font->cffload = (FT_Service_CFFLoad)decoder->cff->cffload;
460 FT_ASSERT( decoder && decoder->cff );
462 return &decoder->cff->vstore;
470 FT_ASSERT( decoder && decoder->cff );
472 return decoder->cff->top_font.font_dict.maxstack;
683 gid = cff_lookup_glyph_by_stdcharcode( decoder->cff, code );
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-cris/
tls-le-12s.d 37 80098: 7fac 7cff movs\.w -132,\$r10
  /external/freetype/builds/amiga/
smakefile 67 OBJFONTD = cff.o type1.o type42.o type1cid.o\
215 cff.o: $(CORE)cff/cff.c
makefile.os4 195 cff.ppc.o: FT:src/cff/cff.c
196 $(CC) -c $(CFLAGS) -o $@ /FT/src/cff/cff.c
294 FONTD = cff.ppc.o type1.ppc.o type42.ppc.o type1cid.ppc.o truetype.ppc.o\
makefile 192 cff.ppc.o: $(FTSRC)/cff/cff.c
290 FONTDPPC = cff.ppc.o type1.ppc.o type42.ppc.o type1cid.ppc.o truetype.ppc.o\
  /external/freetype/
vms_make.com 181 define cff [-.cff]
204 set default [-.cff]
431 $ write sys$output "... [.src.cff] directory"
432 $ create [.src.cff]descrip.mms
433 $ open/append out [.src.cff]descrip.mms
437 # FreeType 2 OpenType/CFF driver compilation rules for VMS
451 CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=([--.include],[--.src.cff])
453 OBJS=cff.obj
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/
__init__.py 314 if tag in ("glyf", "CFF "):
330 # glyph names from (ie. 'post', 'cmap' or 'CFF ').
432 if 'CFF ' in self:
433 cff = self['CFF ']
434 self.glyphOrder = cff.getGlyphOrder()
652 If the font is CFF-based, the outlines will be taken from the 'CFF '
654 If the font contains both a 'CFF ' and a 'glyf' table, you can use
657 if preferCFF and "CFF " in self
    [all...]
  /external/fonttools/Lib/fontTools/
subset.py     [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cris/
rd-v32s-1.d 57 74: 7f4d 8cff ffff lapc 0 <here>,r4

Completed in 135 milliseconds

1 2