Home
last modified time | relevance | path

Searched refs:otf (Results 1 – 25 of 193) sorted by relevance

12345678

/third_party/cups-filters/fontembed/
Dsfnt.c84 static char *otf_read(OTF_FILE *otf,char *buf,long pos,int length) // {{{ in otf_read() argument
95 int res=fseek(otf->f,pos,SEEK_SET); in otf_read()
111 res=fread(buf,1,pad_len,otf->f); in otf_read()
127 static int otf_get_ttc_start(OTF_FILE *otf,int use_ttc) // {{{ in otf_get_ttc_start() argument
131 if (!otf->numTTC) { // >0 if TTC... in otf_get_ttc_start()
136 if ( (use_ttc<0)||(use_ttc>=otf->numTTC)|| in otf_get_ttc_start()
137 (!otf_read(otf,buf,pos+12+4*use_ttc,4)) ) { in otf_get_ttc_start()
145 OTF_FILE *otf_do_load(OTF_FILE *otf,int pos) // {{{ in otf_do_load() argument
151 if (otf_read(otf,buf,pos,12)) { in otf_do_load()
152 otf->version=get_ULONG(buf); in otf_do_load()
[all …]
Dtest_analyze.c20 void show_post(OTF_FILE *otf) // {{{ in show_post() argument
22 assert(otf); in show_post()
26 buf=otf_get_table(otf,OTF_TAG('p','o','s','t'),&len); in show_post()
52 void show_name(OTF_FILE *otf) // {{{ in show_name() argument
54 assert(otf); in show_name()
58 buf=otf_get_table(otf,OTF_TAG('n','a','m','e'),&len); in show_name()
98 void show_cmap(OTF_FILE *otf) // {{{ in show_cmap() argument
100 assert(otf); in show_cmap()
103 char *cmap=otf_get_table(otf,OTF_TAG('c','m','a','p'),&len); in show_cmap()
127 void show_glyf(OTF_FILE *otf,int full) // {{{ in show_glyf() argument
[all …]
Dsfnt_subset.c10 int otf_ttc_extract(OTF_FILE *otf,OUTPUT_FN output,void *context) // {{{ in otf_ttc_extract() argument
12 assert(otf); in otf_ttc_extract()
14 assert(otf->numTTC); in otf_ttc_extract()
18 otw=malloc(sizeof(struct _OTF_WRITE)*otf->numTables); in otf_ttc_extract()
25 for (iA=0;iA<otf->numTables;iA++) { in otf_ttc_extract()
26 otw[iA].tag=otf->tables[iA].tag; in otf_ttc_extract()
28 otw[iA].param=otf; in otf_ttc_extract()
31 iA=otf_write_sfnt(otw,otf->version,otf->numTables,output,context); in otf_ttc_extract()
39 int otf_intersect_tables(OTF_FILE *otf,struct _OTF_WRITE *otw) // {{{ in otf_intersect_tables() argument
42 for (iA=0,iB=0;(iA<otf->numTables)&&(otw[iB].tag);) { in otf_intersect_tables()
[all …]
Dembed_sfnt.c11 EMB_RIGHT_TYPE emb_otf_get_rights(OTF_FILE *otf) // {{{ in emb_otf_get_rights() argument
16 char *os2=otf_get_table(otf,OTF_TAG('O','S','/','2'),&len); in emb_otf_get_rights()
43 const char *emb_otf_get_fontname(OTF_FILE *otf) // {{{ in emb_otf_get_fontname() argument
48 const char *fname=otf_get_name(otf,3,1,0x409,6,&len); // microsoft in emb_otf_get_fontname()
59 } else if ((fname=otf_get_name(otf,1,0,0,6,&len))) { // mac in emb_otf_get_fontname()
81 void emb_otf_get_pdf_fontdescr(OTF_FILE *otf,EMB_PDF_FONTDESCR *ret) // {{{ in emb_otf_get_pdf_fontdescr() argument
87 char *head=otf_get_table(otf,OTF_TAG('h','e','a','d'),&len); in emb_otf_get_pdf_fontdescr()
89 ret->bbxmin=get_SHORT(head+36)*1000/otf->unitsPerEm; in emb_otf_get_pdf_fontdescr()
90 ret->bbymin=get_SHORT(head+38)*1000/otf->unitsPerEm; in emb_otf_get_pdf_fontdescr()
91 ret->bbxmax=get_SHORT(head+40)*1000/otf->unitsPerEm; in emb_otf_get_pdf_fontdescr()
[all …]
Dsfnt.h42 void otf_close(OTF_FILE *otf);
48 char *otf_get_table(OTF_FILE *otf,unsigned int tag,int *ret_len);
50 int otf_get_width(OTF_FILE *otf,unsigned short gid);
51 const char *otf_get_name(OTF_FILE *otf,int platformID,int encodingID,int languageID,int nameID,int …
52 int otf_get_glyph(OTF_FILE *otf,unsigned short gid);
53 unsigned short otf_from_unicode(OTF_FILE *otf,int unicode);
59 int otf_subset(OTF_FILE *otf,BITSET glyphs,OUTPUT_FN output,void *context);
60 int otf_ttc_extract(OTF_FILE *otf,OUTPUT_FN output,void *context);
61 int otf_subset_cff(OTF_FILE *otf,BITSET glyphs,OUTPUT_FN output,void *context);
62 int otf_cff_extract(OTF_FILE *otf,OUTPUT_FN output,void *context);
Dsfnt_int.h62 static inline int get_width_fast(OTF_FILE *otf,int gid) // {{{ in get_width_fast() argument
64 if (gid>=otf->numberOfHMetrics) { in get_width_fast()
65 return get_USHORT(otf->hmtx+(otf->numberOfHMetrics-1)*4); in get_width_fast()
67 return get_USHORT(otf->hmtx+gid*4); in get_width_fast()
72 int otf_load_glyf(OTF_FILE *otf); // - 0 on success
73 int otf_load_more(OTF_FILE *otf); // - 0 on success
75 int otf_find_table(OTF_FILE *otf,unsigned int tag); // - table_index or -1 on error
95 int otf_intersect_tables(OTF_FILE *otf,struct _OTF_WRITE *otw);
Dembed_sfnt_int.h7 EMB_RIGHT_TYPE emb_otf_get_rights(OTF_FILE *otf);
10 const char *emb_otf_get_fontname(OTF_FILE *otf);
12 void emb_otf_get_pdf_fontdescr(OTF_FILE *otf,EMB_PDF_FONTDESCR *ret);
13 EMB_PDF_FONTWIDTHS *emb_otf_get_pdf_widths(OTF_FILE *otf,const unsigned short *encoding,int len,con…
14 EMB_PDF_FONTWIDTHS *emb_otf_get_pdf_cidwidths(OTF_FILE *otf,const BITSET glyph);
16 int emb_otf_ps(OTF_FILE *otf,unsigned short *encoding,int len,unsigned short *to_unicode,OUTPUT_FN …
Dtest_ps.c8 const char *emb_otf_get_fontname(OTF_FILE *otf); // TODO
48 OTF_FILE *otf=NULL; in main() local
52 otf=otf_load(fn); in main()
53 if (!otf) in main()
58 assert(otf); in main()
59 FONTFILE *ff=fontfile_open_sfnt(otf); in main()
/third_party/skia/third_party/externals/harfbuzz/test/shape/data/text-rendering-tests/tests/
DCFF-2.tests1 ../fonts/FDArrayTest65535.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+…
2 ../fonts/FDArrayTest65535.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+…
3 ../fonts/FDArrayTest65535.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+…
4 ../fonts/FDArrayTest65535.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+…
5 ../fonts/FDArrayTest65535.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+…
6 ../fonts/FDArrayTest65535.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+…
7 ../fonts/FDArrayTest65535.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+…
8 ../fonts/FDArrayTest65535.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+…
9 ../fonts/FDArrayTest65535.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+…
10 ../fonts/FDArrayTest65535.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+…
[all …]
DCFF-1.tests1 ../fonts/FDArrayTest257.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+00…
2 ../fonts/FDArrayTest257.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+21…
3 ../fonts/FDArrayTest257.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+24…
4 ../fonts/FDArrayTest257.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+24…
5 ../fonts/FDArrayTest257.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+24…
6 ../fonts/FDArrayTest257.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+4E…
7 ../fonts/FDArrayTest257.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+FF…
8 ../fonts/FDArrayTest257.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+10…
9 ../fonts/FDArrayTest257.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+1D…
10 ../fonts/FDArrayTest257.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+1F…
[all …]
DCFF2-1.tests1 ../fonts/AdobeVFPrototype-Subset.otf;--font-size=1000 --ned --remove-default-ignorables --font-func…
2 ../fonts/AdobeVFPrototype-Subset.otf;--font-size=1000 --ned --remove-default-ignorables --font-func…
3 ../fonts/AdobeVFPrototype-Subset.otf;--font-size=1000 --ned --remove-default-ignorables --font-func…
4 ../fonts/AdobeVFPrototype-Subset.otf;--font-size=1000 --ned --remove-default-ignorables --font-func…
5 ../fonts/AdobeVFPrototype-Subset.otf;--font-size=1000 --ned --remove-default-ignorables --font-func…
6 ../fonts/AdobeVFPrototype-Subset.otf;--font-size=1000 --ned --remove-default-ignorables --font-func…
7 ../fonts/AdobeVFPrototype-Subset.otf;--font-size=1000 --ned --remove-default-ignorables --font-func…
8 ../fonts/AdobeVFPrototype-Subset.otf;--font-size=1000 --ned --remove-default-ignorables --font-func…
9 ../fonts/AdobeVFPrototype-Subset.otf;--font-size=1000 --ned --remove-default-ignorables --font-func…
DHVAR-1.tests1 ../fonts/TestHVAROne.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --varia…
2 ../fonts/TestHVAROne.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --varia…
3 ../fonts/TestHVAROne.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --varia…
4 ../fonts/TestHVAROne.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --varia…
5 ../fonts/TestHVAROne.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --varia…
6 ../fonts/TestHVAROne.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --varia…
DCMAP-1.tests1 ../fonts/TestCMAP14.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+82A6;[…
2 ../fonts/TestCMAP14.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+82A6,U…
3 ../fonts/TestCMAP14.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+82A6,U…
4 ../fonts/TestCMAP14.otf;--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft;U+82A6,U…
/third_party/skia/third_party/externals/harfbuzz/test/shape/data/aots/tests/
Dgpos3.tests1 #../fonts/gpos3_font1.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0011,U+0012,U+00…
2 ../fonts/gpos3_font1.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0011,U+0012,U+001…
3 #../fonts/gpos3_font3.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0011,U+0012,U+00…
4 #../fonts/gpos3_font3.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0011,U+0012,U+00…
5 #../fonts/gpos3_font3.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0011,U+0014,U+00…
6 #../fonts/gpos3_font3.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0011,U+0014,U+00…
7 ../fonts/gpos3_font3.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0011,U+0012,U+001…
8 ../fonts/gpos3_font3.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0011,U+0013,U+001…
9 ../fonts/gpos3_font3.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0011,U+0013,U+001…
10 ../fonts/gpos3_font3.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0011,U+0012;[17|1…
[all …]
Dgsub_chaining1_simple.tests1 ../fonts/gsub_chaining1_simple_f1.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
2 ../fonts/gsub_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
3 ../fonts/gsub_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
4 ../fonts/gsub_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
5 ../fonts/gsub_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
6 ../fonts/gsub_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
7 ../fonts/gsub_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
8 ../fonts/gsub_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
9 ../fonts/gsub_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
10 ../fonts/gsub_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
[all …]
Dgsub_chaining2_simple.tests1 ../fonts/gsub_chaining2_simple_f1.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
2 ../fonts/gsub_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
3 ../fonts/gsub_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
4 ../fonts/gsub_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
5 ../fonts/gsub_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
6 ../fonts/gsub_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
7 ../fonts/gsub_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
8 ../fonts/gsub_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
9 ../fonts/gsub_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
10 ../fonts/gsub_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
[all …]
Dgpos_chaining1_simple.tests1 ../fonts/gpos_chaining1_simple_f1.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
2 ../fonts/gpos_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
3 ../fonts/gpos_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
4 ../fonts/gpos_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
5 ../fonts/gpos_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
6 ../fonts/gpos_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
7 ../fonts/gpos_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0015…
8 ../fonts/gpos_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0016…
9 ../fonts/gpos_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
10 ../fonts/gpos_chaining1_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
[all …]
Dgpos_chaining2_simple.tests1 ../fonts/gpos_chaining2_simple_f1.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
2 ../fonts/gpos_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
3 ../fonts/gpos_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
4 ../fonts/gpos_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
5 ../fonts/gpos_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
6 ../fonts/gpos_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
7 ../fonts/gpos_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0015…
8 ../fonts/gpos_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0016…
9 ../fonts/gpos_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
10 ../fonts/gpos_chaining2_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
[all …]
Dgpos_chaining3_simple.tests1 ../fonts/gpos_chaining3_simple_f1.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
2 ../fonts/gpos_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
3 ../fonts/gpos_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
4 ../fonts/gpos_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
5 ../fonts/gpos_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
6 ../fonts/gpos_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
7 ../fonts/gpos_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0015…
8 ../fonts/gpos_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0016…
9 ../fonts/gpos_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
10 ../fonts/gpos_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0000…
[all …]
Dgsub_chaining3_simple.tests1 ../fonts/gsub_chaining3_simple_f1.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
2 ../fonts/gsub_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
3 ../fonts/gsub_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
4 ../fonts/gsub_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
5 ../fonts/gsub_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
6 ../fonts/gsub_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
7 ../fonts/gsub_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
8 ../fonts/gsub_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
9 ../fonts/gsub_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
10 ../fonts/gsub_chaining3_simple_f2.otf;--features="test" --no-clusters --no-glyph-names --no-positio…
[all …]
Dgpos4_simple.tests1 #../fonts/gpos4_simple_1.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0011,U+0012,U…
2 ../fonts/gpos4_simple_1.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0011,U+0011,U+…
3 ../fonts/gpos4_simple_1.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0019,U+0019,U+…
4 #../fonts/gpos4_simple_1.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0011,U+0012,U…
5 #../fonts/gpos4_simple_1.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0011,U+0012,U…
Dgpos2_2.tests1 ../fonts/gpos2_2_font1.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0011,U+0012,U+0…
2 ../fonts/gpos2_2_font2.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0011,U+0013,U+0…
3 ../fonts/gpos2_2_font3.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0011,U+0013,U+0…
4 ../fonts/gpos2_2_font4.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0012,U+0012,U+0…
5 ../fonts/gpos2_2_font5.otf;--features="test" --no-clusters --no-glyph-names --ned;U+0012,U+0012,U+0…
Dcmap4.tests1 ../fonts/cmap4_font1.otf;--features="test" --no-clusters --no-glyph-names --no-positions --font-fun…
2 ../fonts/cmap4_font2.otf;--features="test" --no-clusters --no-glyph-names --no-positions --font-fun…
3 ../fonts/cmap4_font3.otf;--features="test" --no-clusters --no-glyph-names --no-positions --font-fun…
4 ../fonts/cmap4_font4.otf;--features="test" --no-clusters --no-glyph-names --no-positions --font-fun…
5 #../fonts/cmap4_font4.otf;--features="test" --no-clusters --no-glyph-names --no-positions --font-fu…
6 ../fonts/cmap4_font4.otf;--features="test" --no-clusters --no-glyph-names --no-positions --font-fun…
Dlookupflag_ignore_attach.tests1 ../fonts/lookupflag_ignore_attach_f1.otf;--features="test" --no-clusters --no-glyph-names --no-posi…
2 ../fonts/lookupflag_ignore_attach_f1.otf;--features="test" --no-clusters --no-glyph-names --no-posi…
3 ../fonts/lookupflag_ignore_attach_f1.otf;--features="test" --no-clusters --no-glyph-names --no-posi…
4 ../fonts/lookupflag_ignore_attach_f1.otf;--features="test" --no-clusters --no-glyph-names --no-posi…
5 ../fonts/lookupflag_ignore_attach_f1.otf;--features="test" --no-clusters --no-glyph-names --no-posi…
/third_party/cups-filters/filter/
Dtest_pdf2.c44 OTF_FILE *otf=NULL; in main() local
50 otf=otf_load(fn); in main()
51 if (!otf) in main()
56 assert(otf); in main()
57 FONTFILE *ff=fontfile_open_sfnt(otf); in main()

12345678