Home
last modified time | relevance | path

Searched refs:psnames (Results 1 – 25 of 47) sorted by relevance

12

/third_party/skia/third_party/externals/freetype/src/psaux/
Dt1cmap.c39 FT_Service_PsCMaps psnames = (FT_Service_PsCMaps)face->psnames; in t1_cmap_std_init() local
44 cmap->sid_to_string = psnames->adobe_std_strings; in t1_cmap_std_init()
45 cmap->code_to_sid = is_expert ? psnames->adobe_expert_encoding in t1_cmap_std_init()
46 : psnames->adobe_std_encoding; in t1_cmap_std_init()
303 FT_Service_PsCMaps psnames = (FT_Service_PsCMaps)face->psnames; in t1_cmap_unicode_init() local
308 if ( !psnames->unicodes_init ) in t1_cmap_unicode_init()
311 return psnames->unicodes_init( memory, in t1_cmap_unicode_init()
337 FT_Service_PsCMaps psnames = (FT_Service_PsCMaps)face->psnames; in t1_cmap_unicode_char_index() local
340 return psnames->unicodes_char_index( unicodes, char_code ); in t1_cmap_unicode_char_index()
349 FT_Service_PsCMaps psnames = (FT_Service_PsCMaps)face->psnames; in t1_cmap_unicode_char_next() local
[all …]
Dt1decode.c140 FT_Service_PsCMaps psnames = decoder->psnames; in t1_lookup_glyph_by_stdcharcode_ps() local
147 glyph_name = psnames->adobe_std_strings( in t1_lookup_glyph_by_stdcharcode_ps()
148 psnames->adobe_std_encoding[charcode]); in t1_lookup_glyph_by_stdcharcode_ps()
193 FT_Service_PsCMaps psnames = decoder->psnames; in t1_lookup_glyph_by_stdcharcode() local
200 glyph_name = psnames->adobe_std_strings( in t1_lookup_glyph_by_stdcharcode()
201 psnames->adobe_std_encoding[charcode]); in t1_lookup_glyph_by_stdcharcode()
2110 FT_Service_PsCMaps psnames; in t1_decoder_init() local
2113 FT_FACE_FIND_GLOBAL_SERVICE( face, psnames, POSTSCRIPT_CMAPS ); in t1_decoder_init()
2114 if ( !psnames ) in t1_decoder_init()
2121 decoder->psnames = psnames; in t1_decoder_init()
/third_party/skia/third_party/externals/freetype/src/cff/
Dcffcmap.c153 FT_Service_PsCMaps psnames = (FT_Service_PsCMaps)cff->psnames; in cff_cmap_unicode_init() local
163 if ( !psnames->unicodes_init ) in cff_cmap_unicode_init()
166 return psnames->unicodes_init( memory, in cff_cmap_unicode_init()
193 FT_Service_PsCMaps psnames = (FT_Service_PsCMaps)cff->psnames; in cff_cmap_unicode_char_index() local
196 return psnames->unicodes_char_index( unicodes, char_code ); in cff_cmap_unicode_char_index()
206 FT_Service_PsCMaps psnames = (FT_Service_PsCMaps)cff->psnames; in cff_cmap_unicode_char_next() local
209 return psnames->unicodes_char_next( unicodes, pchar_code ); in cff_cmap_unicode_char_next()
Dcffdrivr.c356 if ( !font->psnames ) in cff_get_glyph_name()
388 FT_Service_PsCMaps psnames; in cff_get_name_index() local
422 FT_FACE_FIND_GLOBAL_SERVICE( face, psnames, POSTSCRIPT_CMAPS ); in cff_get_name_index()
423 if ( !psnames ) in cff_get_name_index()
433 name = (FT_String *)psnames->adobe_std_strings( sid ); in cff_get_name_index()
Dcffobjs.c513 FT_Service_PsCMaps psnames; in cff_face_init() local
532 FT_FACE_FIND_GLOBAL_SERVICE( face, psnames, POSTSCRIPT_CMAPS ); in cff_face_init()
649 cff->psnames = psnames; in cff_face_init()
664 if ( dict->cid_registry == 0xFFFFU && !psnames ) in cff_face_init()
/third_party/skia/third_party/externals/freetype/src/psnames/
Drules.mk18 PSNAMES_DIR := $(SRC_DIR)/psnames
47 PSNAMES_DRV_OBJ_S := $(OBJ_DIR)/psnames.$O
51 PSNAMES_DRV_SRC_S := $(PSNAMES_DIR)/psnames.c
Dmodule.mk20 $(ECHO_DRIVER)psnames $(ECHO_DRIVER_DESC)Postscript & Unicode Glyph name handling$(ECHO_DRIVER_DO…
/third_party/skia/third_party/externals/freetype/src/sfnt/
Dttpost.c58 #define MAC_NAME( x ) (FT_String*)psnames->macintosh_name( (FT_UInt)(x) )
485 FT_Service_PsCMaps psnames; in tt_face_get_ps_name() local
496 psnames = (FT_Service_PsCMaps)face->psnames; in tt_face_get_ps_name()
497 if ( !psnames ) in tt_face_get_ps_name()
Dttcmap.c3685 FT_Service_PsCMaps psnames = (FT_Service_PsCMaps)face->psnames; in tt_cmap_unicode_init() local
3690 if ( !psnames->unicodes_init ) in tt_cmap_unicode_init()
3693 return psnames->unicodes_init( memory, in tt_cmap_unicode_init()
3719 FT_Service_PsCMaps psnames = (FT_Service_PsCMaps)face->psnames; in tt_cmap_unicode_char_index() local
3722 return psnames->unicodes_char_index( unicodes, char_code ); in tt_cmap_unicode_char_index()
3731 FT_Service_PsCMaps psnames = (FT_Service_PsCMaps)face->psnames; in tt_cmap_unicode_char_next() local
3734 return psnames->unicodes_char_next( unicodes, pchar_code ); in tt_cmap_unicode_char_next()
/third_party/skia/third_party/externals/freetype/docs/
DINSTALL.ANY90 src/psnames/psnames.c -- PostScript glyph names support
101 `cff.c' needs `sfnt.c', `pshinter.c', and `psnames.c'
102 `truetype.c' needs `sfnt.c' and `psnames.c'
103 `type1.c' needs `psaux.c' `pshinter.c', and `psnames.c'
104 `type1cid.c' needs `psaux.c', `pshinter.c', and `psnames.c'
/third_party/skia/third_party/externals/freetype/
Dmodules.cfg39 # This driver needs the `psaux', `pshinter', and `psnames' modules.
44 # This driver needs the `sfnt', `psaux', `pshinter', and `psnames' modules.
49 # This driver needs the `psaux', `pshinter', and `psnames' modules.
73 # This driver needs the `psnames' module.
140 # This module depends on `psnames'.
147 AUX_MODULES += psnames
Dvms_make.com192 define psnames [-.psnames]
232 set default [-.psnames]
765 CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=([--.include],[--.src.psnames])
776 $ create [.src.psnames]descrip.mms
777 $ open/append out [.src.psnames]descrip.mms
795 CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=([--.include],[--.src.psnames])
797 OBJS=psnames.obj
/third_party/skia/third_party/externals/freetype/builds/amiga/
Dmakefile.os4159 psnames.ppc.o: FT:src/psnames/psnames.c
160 $(CC) -c $(CFLAGS) -o $@ /FT/src/psnames/psnames.c
284 PS = psaux.ppc.o psnames.ppc.o pshinter.ppc.o
Dmakefile156 psnames.ppc.o: $(FTSRC)/psnames/psnames.c
280 PSPPC = psaux.ppc.o psnames.ppc.o pshinter.ppc.o
Dsmakefile59 OBJPS = psaux.o psnames.o pshinter.o
181 psnames.o: $(CORE)psnames/psnames.c
/third_party/skia/third_party/externals/freetype/builds/atari/
DFREETYPE.PRJ26 ..\..\src\psnames\psnames.c
/third_party/skia/third_party/externals/freetype/src/type1/
Dt1objs.c318 FT_Service_PsCMaps psnames; in T1_Face_Init() local
330 FT_FACE_FIND_GLOBAL_SERVICE( face, psnames, POSTSCRIPT_CMAPS ); in T1_Face_Init()
331 face->psnames = psnames; in T1_Face_Init()
516 if ( psnames ) in T1_Face_Init()
/third_party/skia/third_party/externals/freetype/include/freetype/internal/
Dt1types.h206 const void* psnames; member
235 void* psnames; member
/third_party/skia/third_party/externals/freetype/src/type42/
Dt42objs.c171 FT_Service_PsCMaps psnames; in T42_Face_Init() local
185 FT_FACE_FIND_GLOBAL_SERVICE( face, psnames, POSTSCRIPT_CMAPS ); in T42_Face_Init()
186 face->psnames = psnames; in T42_Face_Init()
340 if ( psnames ) in T42_Face_Init()
Dt42types.h36 const void* psnames; member
/third_party/skia/third_party/freetype2/
DBUILD.gn74 "../externals/freetype/src/psnames/psnames.c",
/third_party/skia/third_party/externals/freetype/builds/symbian/
Dfreetype.mmp90 sourcepath ..\..\src\psnames
139 userinclude ..\..\src\psnames
/third_party/skia/third_party/externals/freetype/builds/mac/
DFreeType.m68k_cfm.make.txt66 :src:psnames:psmodule.c \xB6
187 "{ObjDir}psmodule.c.o" \xC4 :src:psnames:psmodule.c
DFreeType.ppc_classic.make.txt66 :src:psnames:psmodule.c \xB6
190 "{ObjDir}psmodule.c.x" \xC4 :src:psnames:psmodule.c
DFreeType.m68k_far.make.txt65 :src:psnames:psmodule.c \xB6
186 "{ObjDir}psmodule.c.o" \xC4 :src:psnames:psmodule.c

12