Lines Matching refs:topDict
107 for topDict in self.topDictIndex:
108 topDict.recalcFontBBox()
137 for topDict in self.topDictIndex:
138 if not hasattr(topDict, "charset") or topDict.charset is None:
140 topDict.charset = charset
190 topDict = TopDict(GlobalSubrs=self.GlobalSubrs)
191 topDict.charset = None # gets filled in later
200 topDict = TopDict(
204 self.topDictIndex.append(topDict)
209 topDict.fromXML(name, attrs, content)
233 topDict = topDictData[0]
234 if hasattr(topDict, 'Private'):
235 privateDict = topDict.Private
239 topDict.order = opOrder
240 topDict.cff2GetGlyphOrder = cff2GetGlyphOrder
244 if key in topDict.rawDict:
245 del topDict.rawDict[key]
246 if hasattr(topDict, key):
247 delattr(topDict, key)
249 if not hasattr(topDict, "FDArray"):
250 fdArray = topDict.FDArray = FDArrayIndex()
252 fdArray.GlobalSubrs = topDict.GlobalSubrs
253 topDict.GlobalSubrs.fdArray = fdArray
254 charStrings = topDict.CharStrings
275 fdArray = topDict.FDArray
452 for topDict in self.items:
453 children.extend(topDict.getChildren(strings))