Searched refs:subrs (Results 1 - 25 of 25) sorted by relevance

/external/fonttools/Lib/fontTools/
H A Dt1Lib.py90 subrs = self.font["Private"]["Subrs"]
94 subrs=subrs)
95 for i in range(len(subrs)):
96 charString, R = eexec.decrypt(subrs[i], 4330)
97 subrs[i] = psCharStrings.T1CharString(charString[lenIV:], subrs=subrs)
H A Dsubset.py1376 def subset_subroutines(self, subrs, gsubrs):
1382 p[i-1] = subrs._used.index(p[i-1] + subrs._old_bias) - subrs._new_bias
1420 for subrs in [localSubrs, globalSubrs]:
1421 if subrs and not hasattr(subrs, "_used"):
1422 subrs._used = set()
1621 subrs = getattr(c.private, "Subrs", [])
1622 decompiler = _DehintingT2Decompiler(css, subrs,
[all...]
/external/fonttools/Tools/fontTools/
H A Dt1Lib.py90 subrs = self.font["Private"]["Subrs"]
94 subrs=subrs)
95 for i in range(len(subrs)):
96 charString, R = eexec.decrypt(subrs[i], 4330)
97 subrs[i] = psCharStrings.T1CharString(charString[lenIV:], subrs=subrs)
H A Dsubset.py1376 def subset_subroutines(self, subrs, gsubrs):
1382 p[i-1] = subrs._used.index(p[i-1] + subrs._old_bias) - subrs._new_bias
1420 for subrs in [localSubrs, globalSubrs]:
1421 if subrs and not hasattr(subrs, "_used"):
1422 subrs._used = set()
1621 subrs = getattr(c.private, "Subrs", [])
1622 decompiler = _DehintingT2Decompiler(css, subrs,
[all...]
/external/pdfium/core/include/thirdparties/freetype/freetype/internal/
H A Dt1types.h108 FT_Byte** subrs; member in struct:T1_FontRec_
238 CID_Subrs subrs; member in struct:CID_FaceRec_
H A Dpsaux.h679 FT_Byte** subrs; member in struct:T1_DecoderRec_
680 FT_PtrDist* subrs_len; /* array of subrs length (optional) */
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/
H A Dt1types.h108 FT_Byte** subrs; member in struct:T1_FontRec_
238 CID_Subrs subrs; member in struct:CID_FaceRec_
H A Dpsaux.h679 FT_Byte** subrs; member in struct:T1_DecoderRec_
680 FT_PtrDist* subrs_len; /* array of subrs length (optional) */
/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dt1types.h108 FT_Byte** subrs; member in struct:T1_FontRec_
238 CID_Subrs subrs; member in struct:CID_FaceRec_
H A Dpsaux.h679 FT_Byte** subrs; member in struct:T1_DecoderRec_
680 FT_PtrDist* subrs_len; /* array of subrs length (optional) */
/external/freetype/include/internal/
H A Dt1types.h108 FT_Byte** subrs; member in struct:T1_FontRec_
238 CID_Subrs subrs; member in struct:CID_FaceRec_
H A Dpsaux.h679 FT_Byte** subrs; member in struct:T1_DecoderRec_
680 FT_PtrDist* subrs_len; /* array of subrs length (optional) */
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/type1/
H A Dt1load.h48 PS_TableRec subrs; member in struct:T1_Loader_
H A Dt1gload.c184 decoder.subrs = type1->subrs;
249 decoder.subrs = type1->subrs;
345 decoder.subrs = type1->subrs;
H A Dt1load.c39 /* charstrings, and subrs; they are handled with a special pattern */
1360 PS_Table table = &loader->subrs;
1390 /* initialize subrs array -- with synthetic fonts it is possible */
2051 loader->subrs.init = 0;
2069 T1_Release_Table( &loader->subrs );
2181 /* now, propagate the subrs, charstrings, and glyphnames tables */
2185 if ( loader.subrs.init )
2187 loader.subrs.init = 0;
2189 type1->subrs_block = loader.subrs.block;
2190 type1->subrs
[all...]
H A Dt1objs.c247 FT_FREE( type1->subrs );
H A Dt1driver.c335 ft_memcpy( value, (void *)( type1->subrs[idx] ), retval - 1 );
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cid/
H A Dcidload.c388 /* read the subrmap and the subrs of each font dict */
403 if ( FT_NEW_ARRAY( face->subrs, cid->num_dicts ) )
406 subr = face->subrs;
457 /* now, compute the size of subrs charstrings, */
500 if ( face->subrs )
504 if ( face->subrs[n].code )
505 FT_FREE( face->subrs[n].code[0] );
507 FT_FREE( face->subrs[n].code );
509 FT_FREE( face->subrs );
H A Dcidobjs.c209 /* release subrs */
210 if ( face->subrs )
217 CID_Subrs subr = face->subrs + n;
227 FT_FREE( face->subrs );
H A Dcidgload.c132 /* Now set up the subrs array and parse the charstrings. */
135 CID_Subrs cid_subrs = face->subrs + fd_select;
139 /* Set up subrs */
141 decoder->subrs = cid_subrs->code;
/external/fonttools/Lib/fontTools/misc/
H A DpsCharStrings.py259 subrs = getattr(self.private, "Subrs", [])
260 decompiler = SimpleT2Decompiler(subrs, self.globalSubrs)
264 subrs = getattr(self.private, "Subrs", [])
265 extractor = T2OutlineExtractor(pen, subrs, self.globalSubrs,
453 def __init__(self, bytecode=None, program=None, subrs=None):
458 self.subrs = subrs
480 extractor = T1OutlineExtractor(pen, self.subrs)
955 def __init__(self, pen, subrs):
957 self.subrs
[all...]
/external/fonttools/Tools/fontTools/misc/
H A DpsCharStrings.py259 subrs = getattr(self.private, "Subrs", [])
260 decompiler = SimpleT2Decompiler(subrs, self.globalSubrs)
264 subrs = getattr(self.private, "Subrs", [])
265 extractor = T2OutlineExtractor(pen, subrs, self.globalSubrs,
453 def __init__(self, bytecode=None, program=None, subrs=None):
458 self.subrs = subrs
480 extractor = T1OutlineExtractor(pen, self.subrs)
955 def __init__(self, pen, subrs):
957 self.subrs
[all...]
/external/chromium_org/third_party/freetype/src/psaux/
H A Dt1decode.c1350 " invalid subrs index\n" ));
1357 " too many nested subrs\n" ));
1368 zone->base = decoder->subrs[idx];
1377 zone->limit = decoder->subrs[idx + 1];
1385 " invoking empty subrs\n" ));
/external/freetype/src/psaux/
H A Dt1decode.c1350 " invalid subrs index\n" ));
1357 " too many nested subrs\n" ));
1368 zone->base = decoder->subrs[idx];
1377 zone->limit = decoder->subrs[idx + 1];
1385 " invoking empty subrs\n" ));
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
H A Dt1decode.c1350 " invalid subrs index\n" ));
1357 " too many nested subrs\n" ));
1368 zone->base = decoder->subrs[idx];
1377 zone->limit = decoder->subrs[idx + 1];
1385 " invoking empty subrs\n" ));

Completed in 379 milliseconds