/external/fonttools/Lib/fontTools/ |
D | t1Lib.py | 90 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)
|
D | subset.py | 1376 def subset_subroutines(self, subrs, gsubrs): argument 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, c.globalSubrs) 1648 subrs = getattr(c.private, "Subrs", []) 1649 decompiler = _MarkingT2Decompiler(subrs, c.globalSubrs) 1658 subrs = set(subrs) # Remove duplicates [all …]
|
/external/pdfium/third_party/freetype/src/cid/ |
D | cidload.c | 418 if ( FT_NEW_ARRAY( face->subrs, cid->num_dicts ) ) in cid_read_subrs() 421 subr = face->subrs; in cid_read_subrs() 515 if ( face->subrs ) in cid_read_subrs() 519 if ( face->subrs[n].code ) in cid_read_subrs() 520 FT_FREE( face->subrs[n].code[0] ); in cid_read_subrs() 522 FT_FREE( face->subrs[n].code ); in cid_read_subrs() 524 FT_FREE( face->subrs ); in cid_read_subrs()
|
D | cidobjs.c | 210 if ( face->subrs ) in cid_face_done() 217 CID_Subrs subr = face->subrs + n; in cid_face_done() 227 FT_FREE( face->subrs ); in cid_face_done()
|
D | cidgload.c | 135 CID_Subrs cid_subrs = face->subrs + fd_select; in cid_load_glyph() 141 decoder->subrs = cid_subrs->code; in cid_load_glyph()
|
/external/pdfium/third_party/freetype/src/type1/ |
D | t1gload.c | 184 decoder.subrs = type1->subrs; in T1_Compute_Max_Advance() 249 decoder.subrs = type1->subrs; in T1_Get_Advances() 347 decoder.subrs = type1->subrs; in T1_Load_Glyph()
|
D | t1load.h | 48 PS_TableRec subrs; member
|
D | t1load.c | 1400 PS_Table table = &loader->subrs; in parse_subrs() 2097 loader->subrs.init = 0; in t1_init_loader() 2115 T1_Release_Table( &loader->subrs ); in t1_done_loader() 2231 if ( loader.subrs.init ) in T1_Open_Face() 2233 loader.subrs.init = 0; in T1_Open_Face() 2235 type1->subrs_block = loader.subrs.block; in T1_Open_Face() 2236 type1->subrs = loader.subrs.elements; in T1_Open_Face() 2237 type1->subrs_len = loader.subrs.lengths; in T1_Open_Face()
|
D | t1objs.c | 247 FT_FREE( type1->subrs ); in T1_Face_Done()
|
D | t1driver.c | 337 ft_memcpy( value, (void *)( type1->subrs[idx] ), retval - 1 ); in t1_ps_get_font_value()
|
/external/fonttools/Lib/fontTools/misc/ |
D | psCharStrings.py | 259 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): argument 458 self.subrs = subrs 480 extractor = T1OutlineExtractor(pen, self.subrs) 955 def __init__(self, pen, subrs): argument 957 self.subrs = subrs 1022 subr = self.subrs[subrIndex] [all …]
|
/external/pdfium/third_party/freetype/include/freetype/internal/ |
D | t1types.h | 108 FT_Byte** subrs; member 238 CID_Subrs subrs; member
|
D | psaux.h | 679 FT_Byte** subrs; member
|
/external/freetype/include/internal/ |
D | t1types.h | 108 FT_Byte** subrs; member 238 CID_Subrs subrs; member
|
D | psaux.h | 679 FT_Byte** subrs; member
|
/external/freetype/src/psaux/ |
D | t1decode.c | 1372 zone->base = decoder->subrs[idx]; in t1_decoder_parse_charstrings() 1381 zone->limit = decoder->subrs[idx + 1]; in t1_decoder_parse_charstrings()
|
/external/pdfium/third_party/freetype/src/psaux/ |
D | t1decode.c | 1372 zone->base = decoder->subrs[idx]; in t1_decoder_parse_charstrings() 1381 zone->limit = decoder->subrs[idx + 1]; in t1_decoder_parse_charstrings()
|