Searched refs:otFont (Results 1 – 5 of 5) sorted by relevance
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | C_F_F_.py | 14 def decompile(self, data, otFont): argument 15 self.cff.decompile(BytesIO(data), otFont, isCFF2=False) 18 def compile(self, otFont): argument 20 self.cff.compile(f, otFont, isCFF2=False) 41 def toXML(self, writer, otFont): argument 44 def fromXML(self, name, attrs, content, otFont): argument 47 self.cff.fromXML(name, attrs, content, otFont)
|
D | C_F_F__2.py | 9 def decompile(self, data, otFont): argument 10 self.cff.decompile(BytesIO(data), otFont, isCFF2=True) 13 def compile(self, otFont): argument 15 self.cff.compile(f, otFont, isCFF2=True)
|
/external/fonttools/Lib/fontTools/varLib/ |
D | cff.py | 36 def lib_convertCFFToCFF2(cff, otFont): argument 38 cff2GetGlyphOrder = cff.otFont.getGlyphOrder 109 cff.compile(file, otFont, isCFF2=True) 111 cff.decompile(file, otFont, isCFF2=True)
|
/external/fonttools/Lib/fontTools/cffLib/ |
D | __init__.py | 33 def decompile(self, file, otFont, isCFF2=None): argument 34 self.otFont = otFont 58 cff2GetGlyphOrder = otFont.getGlyphOrder 92 def compile(self, file, otFont, isCFF2=None): argument 93 self.otFont = otFont 106 if otFont.recalcBBoxes and not isCFF2: 139 charset = otFont.getGlyphOrder() 166 def fromXML(self, name, attrs, content, otFont=None): argument 167 self.otFont = otFont 199 cff2GetGlyphOrder = self.otFont.getGlyphOrder [all …]
|
/external/skia/modules/skshaper/src/ |
D | SkShaper_harfbuzz.cpp | 291 HBFont otFont(hb_font_create(face.get())); in create_hb_font() local 292 SkASSERT(otFont); in create_hb_font() 293 if (!otFont) { in create_hb_font() 296 hb_ot_font_set_funcs(otFont.get()); in create_hb_font() 301 hb_font_set_variations(otFont.get(), in create_hb_font() 309 HBFont skFont(hb_font_create_sub_font(otFont.get())); in create_hb_font()
|