Home | History | Annotate | Download | only in tables

Lines Matching refs:cff

11 		self.cff = cffLib.CFFFontSet()
15 self.cff.decompile(StringIO(data), otFont)
16 assert len(self.cff) == 1, "can't deal with multi-font CFF tables."
20 self.cff.compile(f, otFont)
24 if hasattr(self.cff[self.cff.fontNames[0]], "ROS"):
34 return self.cff[self.cff.fontNames[0]].getGlyphOrder()
39 #self.cff[self.cff.fontNames[0]].setGlyphOrder(glyphOrder)
42 self.cff.toXML(writer, progress)
45 if not hasattr(self, "cff"):
46 self.cff = cffLib.CFFFontSet()
47 self.cff.fromXML(name, attrs, content)